SMART datagrid v1.4 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.first  property

첫 번째 자식 을 리턴한다. 

마지막 자식 행은 last로 알 수 있다. 

Getter
function first(): GridRow
Code -1
    $('#checkChildren').click(function () {
        var group = grid.focusedGroupRow();
        if (group) {
            var row = group.first();
            while (row) {
                row.setChecked(true);
                row = row.next();
            }
        }
    });
See Also
last
firstLeaf
lastLeaf
GridRow.next
GridRow.prev
Examples
행 그룹핑