Events

The Bootstrap checkboxes component extends the wire.ui.component class. As such, it inherits all its base events.

The following events are added to the Bootstrap checkboxes component.

const checkboxes = new wire.bsCheckboxes().render("#checkboxes", {
    ...
    events: {
        change: (config) => {
            ...
        }    
    }
});

Last updated