Check documentation for the latest version of dhtmlxSuite onRowHide DHTMLX Docs

onRowHide

fires when the row is hiding

void onRowHide(string|number id,boolean state);
idstring|numberthe id of a row
statebooleantrue, if the row is hiding, false for showing the row

Example

mygrid.attachEvent("onColumnCollapse",function(id,state){
    //your code here
})

Back to top