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. Checkboxes

Events

PreviousData BindingNextInput

Last updated 2 years ago

The Bootstrap checkboxes component extends the class. As such, it inherits all its base events.

The following events are added to the Bootstrap checkboxes component.

Name

Description

change(config)

Raised when an option in the component is checked or unchecked passing the standard WireBootstrap .

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