beforeRowHide
fires before a row is hidden
beforeRowHide: (row: object) => boolean | void;
Parameters:
The callback of the event is called with the following parameters:
row: object
- an object with a row configuration
Returns:
Return false
to prevent a row from being hidden; otherwise, true
.
Example
grid.events.on("beforeRowHide", (row) => {
// your logic here
return false;
});
Related sample: Grid. Events
Change log:
added in v7.0