Fixes
- #684 addresses an issue if you were using custom cells then any properly that enabled RowClick events did not fire a click event back to the RowClick handler. If you are using properties such as:
onRowClicked
,onRowDoubleClicked
,expandOnRowClicked
orexpandOnRowDoubleClicked
then those click events will be ignored when clicking on your custom cell. To allowRowClicked
events you can adddata-tag="allowRowEvents"
to your custom cell component elements. If your custom cell component is more complex and has nested elements you want to adddata-tag="allowRowEvents"
to the innermost element or on the elements you want to propagate the click event to. For example:row => <h2 data-tag="allowRowEvents">{row.title}</h2>
Maintenance
- #715 Update eslint libs and fix various lint errors