Skip to main content

expand

fires on expanding a treegrid

expand: (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

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