Events

The Bootstrap Select 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 search list component.

Name

Description

change(config)

Raised an item is selected passing the standard WireBootstrap user event dataarrow-up-right.

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

Last updated