Check documentation for the latest version of dhtmlxSuite onGroupClick DHTMLX Docs

onGroupClick

fires on clicking a group row (can be blocked)

void onGroupClick(string name);
namestringthe name of a group

Available only in PRO Edition

Example

mygrid.attachEvent("onGroupClick",function(name){
    //your code here
    return false;
});

Back to top