Check documentation for the latest version of dhtmlxSuite onColumnHidden DHTMLX Docs

onColumnHidden

fires after a column has been hidden (the setColumnHidden method has been called)

void onColumnHidden(number index,boolean state);
indexnumberthe index of a column
statebooleantrue - the column is hidden, otherwise the column is shown

Available only in PRO Edition

Example

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

Back to top