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.

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

Last updated