afterRowHide
fires after a row is hidden
afterRowHide: (row: object) => void;
Parameters:
The callback of the event is called with the following parameters:
row: object
- an object with a row configuration
Example
grid.events.on("afterRowHide", (row) => {
// your logic here
});
Related sample: Grid. Events
Change log:
added in v7.0