SMART datagrid v.1 > Classes > DisplayOptions
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.
grid.setOptions({
display: {
checkChildColumnResizable: false,
columnResizable: false
}
});
grid.setDisplayOptions({
checkChildColumnResizable: false,
columnResizable: false
});
grid.displayOptions().setCheckChildColumnResizable(false);