SMART datagrid v1.4 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.descendantCount  property

이 그룹 행이 포함하는 모든 자손 들의 개수. 

바로 아래 자식행들의 개수는 count로 알 수 있다. 또, 모든 자손행은 getDescendants로 가져올 수 있다. 

Getter
function descendantCount(): Integer
Code -1
    $('#checkDescendants').click(function () {
        var group = grid.focusedGroupRow();
        if (group && group.descendantCount() > 1) {
            var rows = group.getDescendants();
            for (var i = rows.length; i--;) {
                rows[i].setChecked(true);
            }
        }
    });
See Also
getDescendants
children
count
getChild
Examples
행 그룹핑