SMART datagrid v.1 > Classes > GroupRow
Return the first child Row.
You can check the last child row by last.
$('#checkChildren').click(function () {
var group = grid.focusedGroupRow();
if (group) {
var row = group.first();
while (row) {
row.setChecked(true);
row = row.next();
}
}
});