Skip to main content

afterExpand

fires after expanding a treegrid

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

Parameters:

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

Example

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

Related sample: TreeGrid. Events

Change log:

added in v6.4