This question is locked. New answers and comments are not allowed.
Is there an easy way to change the sort direction toggle order when a user clicks a grid column?
By default, when a user clicks a column it cycles through sort directions in the following order:
Ideally, I would like it to cycle through sort directions in this order:
Our data sets are quite large, and consist of numerous (uninteresting) records with 'zero' values. In the current implementation users must click twice before viewing records of interest. This is unfortunate from not only a user perspective, but also from a performance perspective as it results in needless round trips to the server.
Any thoughts?
By default, when a user clicks a column it cycles through sort directions in the following order:
- None
- ListSortDirection.Ascending
- ListSortDirection.Descending
Ideally, I would like it to cycle through sort directions in this order:
- None
- ListSortDirection.Descending
- ListSortDirection.Ascending
Our data sets are quite large, and consist of numerous (uninteresting) records with 'zero' values. In the current implementation users must click twice before viewing records of interest. This is unfortunate from not only a user perspective, but also from a performance perspective as it results in needless round trips to the server.
Any thoughts?