ui
ui copied to clipboard
Allow to exclude selectors when using Table::onRowClick()
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