SMART datagrid v1.4 > Classes > GroupRow
첫 번째 자식 행을 리턴한다.
마지막 자식 행은 last로 알 수 있다.
$('#checkChildren').click(function () {
var group = grid.focusedGroupRow();
if (group) {
var row = group.first();
while (row) {
row.setChecked(true);
row = row.next();
}
}
});