Skip to main content

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 parameter:

  • row: object - an object with a row configuration

Example

treegrid.events.on("afterRowShow", (row) => {
// your logic here
});

Related sample: TreeGrid. Events

Change log:

added in v7.0