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