Events

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

Name

Description

click(config)

Raised when a table cell in the table is clicked passing the standard WireBootstrap user event dataarrow-up-right.

const table = new wire.bsTable().render("#table", {
    ...
    events: {
        click: (config) => {
            ...
        }    
    }
});

Last updated