SMART datagrid v.1 > Classes > GridBase
DataLudi.GridBase.displayOptions property
DisplayOptions object which manages the overall properties about the grid display.
- Getter
- function displayOptions(): DisplayOptions
- Setter
- function setDisplayOptions(value: Obejct|DisplayOptions)
Code -1
$('#toogleSizable').click = function (ev) {
grid.setDisplayOptions({
columnResizable: ev.target.checked
});
};
- Note
- Objects will be created when create the grid.
- If specify edit properties through Setter of this property, the values of existing object will be changed.
- See Also
- DisplayOptions
- editOptions
- operateOptions
- examples
- Hello Grid