SMART datagrid v.1 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.first  property

返回第一个子。 

可以通过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
行分组