SMART datagrid v1.4 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.count  property

포함하고 있는 자식 들의 개수. 

자식 행들의 자식 등, 이 행의 모든 자손 행의 개수는 descendantCount로 알 수 있다. 

Getter
function count(): RowIndicator
Code -1
    $('#checkChildren').click(function () {
        var group = grid.focusedGroupRow();
        if (group) {
            for (var i = group.count(); i--;) {
                group.getChild(i).setChecked(true);
            }
        }
    });
See Also
children
getChild
descendantCount
Examples
행 그룹핑