SMART datagrid v.1 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.isRoot  property

Return true if root property value of this column is itself. 

In other words, if itself is top column, it will be true

Getter
function isRoot(): Boolean
Code -1
    var col = grid.columnByName('colzender');
    if (col.isRoot()) {
        col.setWidth(200);
    }
See Also
root
parent
group
index
ColumnGroup
GridBase
Examples
Column Grouping