SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.fixedColumnMovable  property

If it is true, the user can move the columns which are contained in fixed area. 

You can move column header cell by dragging the mouse. First, columnMovable should be true

Defaults to false.

Getter
function fixedColumnMovable(): Boolean
Setter
function setFixedColumnMovable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            columnMovable: true,
            fixedColumnMovable: true
        }
    });
Code -2
    grid.setDisplayOptions({
        columnMovable: true,
        fixedColumnMovable: true
    });
Code -3
    grid.displayOptions().setFixedColumnMovable(true);
See Also
columnMovable
fixedColumnResizable
fixedColumnCount
EditOptions.fixedColumnEditable
Examples
Column Moving
Fixed Columns