SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.checkChildColumnResizable  property

If it is not the top Column and this value is false, only when Column Group of containing the column is resizable, the user can change the width of column. 

If want to let the user change the width of column during the run time, columnResizable should be set as true first, and resizable of corresponding column should also be set as true

Defaults to true.

Getter
function checkChildColumnResizable(): Boolean
Setter
function setCheckChildColumnResizable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            checkChildColumnResizable: false,
            columnResizable: false
        }
    });
Code -2
    grid.setDisplayOptions({
        checkChildColumnResizable: false,
        columnResizable: false
    });
Code -3
    grid.displayOptions().setCheckChildColumnResizable(false);
See Also
columnResizable
GridColumn.resizable
ColumnGroup
Examples
Column Resizing
Column Grouping