SMART datagrid v.1 > Classes > GridBase
Change checked state of Grid Row specified by parameter row.
If changed successfully, it will return true. If exclusive is true, it will remove the selected state of existing rows and select the specified row.
$('#check').click(function () {
var row = grid.focusedRow();
if (row) {
grid.setChecked(row, true, false);
}
});