SMART datagrid v1.4 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.children  property

포함하고 있는 자식 행들을 배열로 리턴한다. 

Getter
function children(): [GridRow]
Code -1
    $('#checkChildren').click(function () {
        var group = grid.focusedRow();
        if (group instanceof GroupRow) {
            var rows = group.children();
            for (var i = rows.length; i--;) {
                rows[i].setChecked(true);
            }
        }
    });
See Also
count
getChild
descendantCount
getDescendants
Examples
Row Model
행 그룹핑