Events

The Bootstrap input component extends the wire.ui.component 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 data.

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

Last updated