SMART datagrid v.1 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.fixed  property

Return true if this column is fixed column. 

When DisplayOptions.fixedColumnCount is greater than 0, the top column including this column, that is, the column of which displayIndex of root column is less than fixedColumnCount will be fixed, and this property value of column will become true. 

Getter
function fixed(): Boolean
Code -1
    var column = grid.focusedColumn();
    if (column.fixed()) {
        alert("This column is fixed.");
    }
See Also
displayIndex
root
DisplayOptions.fixedColumnCount
DisplayOptions.fixedRowCount
Examples
Fixed Columns
Column Grouping