Skip to main content

afterExpand

fires after expanding a treegrid

afterExpand: (rowId: string | number) => void;

Parameters:

The callback of the event is called with the following parameter:

  • rowId: string | number - the id of an expanded row

Example

treeGrid.events.on("afterExpand", (rowId) => {
// your logic here
});

Related sample: TreeGrid. Events

Change log:

added in v6.4