SMART datagrid v.1 > Classes > GridColumn
DataLudi.GridColumn.resizable property
Specify whether to enable the user to change the width of this column.
Defaults to true.
- Getter
- function resizable(): Boolean
- Setter
- function setResizable(value: Boolean)
- Note
- Regardless of this property value, the width of column can be changed through width property, etc.
Code -1
var col = grid.columnByName('colZender');
col.setResizable(false);
- See Also
- width
- movable
- DisplayOptions.columnResizable
- DisplayOptions.fixedColumnResizable
- DisplayOptions.checkChildColumnResizable
- Examples
- Column Resizing
- Column Grouping