SMART datagrid v1.4 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.firstLeaf  property

이 그룹행을 모두 펼쳤을 때, 자손행들 중 트리 구조 상 가장 첫 번째에 위치한 행을 리턴한다. 

가장 마지막 행은 lastLeaf로 알 수 있다. 또, 포함된 전체 Leaf 행들은 getLeaves로 가져올 수 있다. 

Getter
function firstLeaf(): GridRow
Code -1
    var row = grid.focusedRow();
    if (row instanceof GroupRow) {
        var leaf = row.firstLeaf();
        grid.setFocusedRow(leaf, true);    }
See Also
lastLeaf
first
last
getLeaves
Examples
행 그룹핑