SMART datagrid v.1 > Classes > GridBase
Return the checked state of Row specified by parameter row.
If isCheckable is the row returning true, the user can click grid CheckBar cell to change the checked state.
$('#check').click(function () {
var row = grid.focusedRow();
if (row && grid.isChecked(row)) {
alert('Checked !');
}
});