Events

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

The following events are added to the Bootstrap search list component.

Name

Description

change(config)

Raised an item is selected passing the standard WireBootstrap user event data.

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

Last updated