Events

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

The following events are added to the Bootstrap checkboxes component.

Name

Description

change(config)

Raised when an option in the component is checked or unchecked passing the standard WireBootstrap user event dataarrow-up-right.

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

Last updated