SMART datagrid v.1 > Classes > OperateOptions
The display mode of sorting handle which indicates the sorting state in column header cell.
It is specified by HandleVisibility constant, and when ColumnHeader.sortHandleVisibility property is not specified, this property will be used.
Defaults to HandleVisibility.VISIBLE.
grid.setOptions({
operate: {
sortHandleVisibility: DataLudi.HandleVisibility.ALWAYS,
sortingEnabled: true
}
});
grid.setOperateOptions({
sortHandleVisibility: DataLudi.HandleVisibility.ALWAYS,
sortingEnabled: true
});
grid.operateOptions().setSortHandleVisibility(DataLudi.HandleVisibility.ALWAYS);