SMART datagrid v.1 > Classes > OperateOptions
The way of sorting one or more columns.
It is specified by SortStyle constant.
Defaults to SortStyle.EXCLUSIVE.
grid.setOptions({
operate: {
sortStyle: DataLudi.SortStyle.INCLUSIVE,
sortingEnabled: true
}
});
grid.setOperateOptions({
sortStyle: DataLudi.SortStyle.INCLUSIVE,
sortingEnabled: true
});
grid.operateOptions().setSortStyle(DataLudi.SortStyle.INCLUSIVE);