SMART datagrid v1.4 > Classes > GridColumn

Back  Forward

DataLudi.GridColumn.fixed  property

이 컬럼이 고정 컬럼이면 true

DisplayOptions.fixedColumnCount가 0보다 클 때, 이 컬럼을 포함한 최상위 컬럼 즉, root 컬럼의 displayIndex가 fixedColumnCount보다 작은 컬럼은 고정되고 컬럼의 이 속성 값이 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