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