expand

fires on expanding a treegrid

void expand(string|number rowId){ ... };

Parameters

rowIdstring|numberthe id of an expanded row

Example

pivot.grid.events.on("Expand", function(rowId){
    // your logic here
});

Related samples

Back to top