ui icon indicating copy to clipboard operation
ui copied to clipboard

Allow to exclude selectors when using Table::onRowClick()

Open ibelar opened this issue 3 years ago • 0 comments

Usage:

Exclude Table Checkbox column from the event:

$table->onRowClick($action, ['.' . Checkbox::CHECKBOX_COLUMN_CSS]);

Exclude the first and last column from the event:

$table->onRowClick($action, [':first-child', ':last-child']);

Fix #1601

ibelar avatar Aug 06 '21 13:08 ibelar