SMART datagrid v.1 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.count  property

The number of child Rows being included. 

You can check the number of all descendant rows of this row like child of child rows by 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
Row Grouping