Check documentation for the latest version of dhtmlxSuite onSubRowOpen DHTMLX Docs

onSubRowOpen

fires when a sub-row(sub-grid) was opened/closed

void onSubRowOpen(string|number id,boolean state);
idstring|numberthe id of a row
statebooleanthe open state, true - opened

Available only in PRO Edition

Example

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

Back to top