SMART datagrid v1.4 > Classes > GroupRow

Back  Forward

DataLudi.GroupRow.isDescendant  method

매개변수 row로 지정한 그리드행이 이 그룹행의 자손이면 true를 리턴한다. 

function isDescendant (row: GridRow): Boolean;
Returns
Boolean
Parameters
row - GridRow. required.
Code -1
    var row = grid.getRowOfDataIndex(0);
    var group = grid.focusedRow();
    if (group instanceof GroupRow) {
        if (group.isDescendant(row)) {
            grid.setFocusedRow(row, true);
        }
    }
See Also
count
children
descendantCount
getDescendants
Examples
Row Grouping
병합모드 그룹핑