SMART datagrid v.1 > Classes > OperateOptions
The way of matching case of text when doing column sorting.
It is specified by SortCase constant.
Defaults to SortCase.SENSITIVE.
grid.setOptions({
operate: {
sortTextCase: DataLudi.SortCase.INSENSITIVE,
sortingEnabled: true
}
});
grid.setOperateOptions({
sortTextCase: DataLudi.SortCase.INSENSITIVE,
sortingEnabled: true
});
grid.operateOptions().setSortTextCase(DataLudi.SortCase.INSENSITIVE);