Check documentation for the latest version of dhtmlxSuite getCheckedRows DHTMLX Docs

getCheckedRows

gets the list of ids of all the rows with checked exCell in the specified column

string getCheckedRows(number col_ind);
col_indnumbercolumn index
stringthe list of ids of all the rows with checked exCell in the specified column

Example

//get the list of ids of checked rows from the first column
var checked=myGrid.getCheckedRows(0);

Back to top