SMART datagrid v.1 > Classes > GroupRow
Return the terminal rows which have no child rows included in this group row as array.
$('#checkLeaves').click(function () {
var row = grid.focusedRow();
if (row) {
var rows = row.getLeaves(true, true);
grid.checkAll(false);
grid.checkRows(rows, true);
}
});