SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.fixedColumnResizable  property

If it is true, the user can change the width of fixed column. 

You can change the width by dragging the right border of column header cell with mouse. First, columnResizable should be true

Defaults to false.

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