I have a RadGridView with a default sort-order.
When the user clicks on some of the columns, I want the default ascending sort order as the first sort order selected (as it is out of the box).
But for other columns, the user almost always wants them selected descending. This means that right now the user needs to click the column header two times (or more, if they system is a bit slow and they happen to click multiple times in anger).
That is, for a few column I would like to have:
* descending -> ascending -> none
instead of:
* ascending -> descending -> none.
I know that I can make a propery on the viewmodel which returns (Int32.MaxValue - myvalue) and use SortMemberPath, but then the arrow on the header would point in the wrong direction (it would tell the user ascending but the data would be sorted descending).
Is there any way to tell individual columns, that I want the first selected sort order to be descending?
Thanks,