sets a value for all checkboxes in the specified column
col_ind | number | column index |
v | number | value, 0 - not checked, any other value - checked |
//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