SMART datagrid v.1 > Classes > GridBase
Return the list of Grid Rows corresponding to Data Set rows specified in parameter dataIndices.
$('#checkRows').click(function () {
var dataIndices = [0, 1, 2];
var rows = grid.getRowIndicesOfDataIndices(dataIndies);
// Change the rows as checked state.
grid.checkRows(rows, true);
});