SMART datagrid v.1 > 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
行グルーピング