expand

fires on expanding a treegrid

void expand(string|number rowId);
rowIdstring|numberthe id of an expanded row

Example

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

Details

Related sample:  Grid events

Back to top