Check documentation for the latest version of dhtmlxSuite setCheckedRows DHTMLX Docs

setCheckedRows

sets a value for all checkboxes in the specified column

void setCheckedRows(number col_ind,number v);
col_indnumbercolumn index
vnumbervalue, 0 - not checked, any other value - checked

Example

//check all the checkboxes in the first column
mygrid.setCheckedRows(0,1);
//uncheck all the checkboxes in the first column
mygrid.setCheckedRows(0,0);

Back to top