SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.columnResizable  property

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

You can also individually specify by resizable property of column. 

Defaults to true.

Getter
function columnResizable(): Boolean
Setter
function setColumnResizable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            columnResizable: true,
            rowResizable: true
        }
    });
Code -2
    grid.setDisplayOptions({
        columnResizable: true,
        rowResizable: true
    });
Code -3
    grid.displayOptions().setColumnResizable(true);
Note
See Also
fixedColumnResizable
rowResizable
GridColumn.resizable
Examples
Column Resizing
Column Grouping
Hello Grid