afterRowShow
fires after a row is shown on a page
afterRowShow: (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("afterRowShow", (row) => {
// your logic here
});
Related sample: Grid. Events
Change log:
added in v7.0