Events

The Bootstrap input 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 input component.

Name

Description

change(config)

Raised when the value in the input is changed passing the standard WireBootstrap user event dataarrow-up-right.

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

Last updated