SMART datagrid v.1 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.first  property

Return the first child Row

You can check the last child row by last

Getter
function first(): GridRow
Code -1
    $('#checkChildren').click(function () {
        var group = grid.focusedGroupRow();
        if (group) {
            var row = group.first();
            while (row) {
                row.setChecked(true);
                row = row.next();
            }
        }
    });
See Also
last
firstLeaf
lastLeaf
GridRow.next
GridRow.prev
Examples
Row Grouping