Check documentation for the latest version of dhtmlxSuite setRowHidden DHTMLX Docs

setRowHidden

hides/shows a row

void setRowHidden(string|number id,boolean state);
idstring|numberthe id of a row
statebooleantrue/false to hide/show a row

Example

// hide row with the id "row1"
mygrid.setRowHidden("row1",true);
// show row with the id "row1"
mygrid.setRowHidden("row1",false);

Details

Warning! This command doesn't affect row indexes, only visual appearance.

Back to top