Check documentation for the latest version of dhtmlxSuite onGroupStateChanged DHTMLX Docs

onGroupStateChanged

fires when a group was opened/closed

void onGroupStateChanged(string|number value,boolean state);
valuestring|numberthe key value of a group
statebooleanthe open state, true - opened

Available only in PRO Edition

Example

grid.attachEvent("onGroupStateChanged", function(value,state){
    //your code here
});

Back to top