Bootstrap
Docs HomeProduct SiteSupport
  • Introduction
  • Buttons
    • Configuration
    • Data Binding
  • Checkboxes
    • Configuration
    • Data Binding
    • Events
  • Input
    • Configuration
    • Data Binding
    • Events
    • Methods
  • Modals
    • Message
    • Error
  • Search List
    • Configuration
    • Data Binding
    • Methods
  • Select
    • Configuration
    • Data Binding
    • Events
  • Table
    • Configuration
    • Data Binding
    • Events
  • Web Components
Powered by GitBook
On this page
  1. Input

Events

PreviousData BindingNextMethods

Last updated 2 years ago

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

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