Events

DataTables for WireBootstrap extends the wire.ui.component class. As such, it inherits all its base events.

The following events are added to DataTables for WireBootstrap.

Name

Description

rowClick(config)

Raised whenever a row is clicked in the component passing the standard WireBootstrap user event data. This bubbles the native click event on the table row tr element with additional data and context.

select(config)

Raised whenever items (rows, columns or cells) are selected in the component passing the standard WireBootstrap user event data.

deselect(config)

Raised whenever items (rows, columns or cells) are deselected in the component passing the standard WireBootstrap <user event data>.

rowDblClick(config)

Raised whenever a row is double clicked in the component passing the standard WireBootstrap user event data. This bubbles the native dblclick event on the table row tr element with additional data and context.

new wire.datatables().render("#select", {
    ...
    events: {
        select: (config) => {
            ...
        }    
    }
});

Last updated

Was this helpful?