Incorrect sorting code snippets for grid/treeGrid/hGrid
RivaIvanova opened this issue · 0 comments
RivaIvanova commented
The first sorting expressions refer to the Tree Grid:
[
{ fieldName: 'Name', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'Price', dir: SortingDirection.Desc }
];
The second sorting expressions as well as the other code snippets do not correspond to the Grid and Hierarchical Grid samples:
[
{ fieldName: 'ProductName', dir: SortingDirection.Asc, ignoreCase: true },
{ fieldName: 'Price', dir: SortingDirection.Desc }
];