SMART datagrid v.1 >  Classes >  GridBase
DataLudi.GridBase.operateOptions  property
OperateOptions object. It is the group of properties related to grid sorting, filtering, grouping. 
- Getter
- function operateOptions(): OperateOptions
- Setter
- function setOperateOptions(value: Object|OperateOptions)
Code -1
    $('#toogleGrouping').click = function (ev) {
        grid.setOperateOptions({
            groupingEnabled: ev.target.checked
        });
    };
- Note
- When creating the grid, the object will be created.
- If specify edit properties through Setter of this property, the values of existing object will be changed.
- See Also
- EditOptions
- displayOptions
- editOptions