SMART datagrid v.1 > Classes > OperateOptions

Back  Forward

DataLudi.OperateOptions.sortTextCase  property

The way of matching case of text when doing column sorting. 

It is specified by SortCase constant. 

Defaults to SortCase.SENSITIVE.

Getter
function sortTextCase(): SortCase
Setter
function setSortTextCase(value: SortCase)
Code -1
    grid.setOptions({
        operate: {
            sortTextCase: DataLudi.SortCase.INSENSITIVE,
            sortingEnabled: true
        }
    });
Code -2
    grid.setOperateOptions({
        sortTextCase: DataLudi.SortCase.INSENSITIVE,
        sortingEnabled: true
    });
Code -3
    grid.operateOptions().setSortTextCase(DataLudi.SortCase.INSENSITIVE);
See Also
sortingEnabled
sortMode
sortStyle
SortSCase
DataColumn.sortable
GridBase.orderBy
Examples
Column Sorting