Check documentation for the latest version of dhtmlxSuite checkAll DHTMLX Docs

checkAll

checks all checkboxes in the grid

void checkAll(boolean mode);
modeboolean{true/false} check

Example

//check all checkboxes in grid
myTreeGrid.checkAll(true);
//uncheck all checkboxes in grid
myTreeGrid.checkAll(false);

Back to top