Events

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

The following events are added to the Bootstrap table component.

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

Last updated