Articles in this section
Category / Section

How to change the initial sort direction

1 min read

In GridDataControl, sorting can be performed by clicking the column header when the AllowSorting API is enabled. By default, the direction of sorting is in ascending order. If you want to change it to descending order, you can do so using SortColumnChangingEvent.

GridDataSortColumnChangingEventArgs has the following properties:

Action: Notifies the action that caused a CollectionChanged event. Here the sorting direction is changed based on the action ADD.

AddedItems: Collection of SortColumnDescription that are added to SortColumns.

RemovedItems: Collection of SortColumnDescription that has been removed from SortColumns. 

AddedItems contains a new item that requires a change in the sorting direction. To do so, use the given code example,

C#

public MainWindow()
{
    InitializeComponent();
    this.dataGrid1.Model.Table.SortColumnsChanging += Table_SortColumnsChanging;
}
 
void Table_SortColumnsChanging(object sender, GridDataSortColumnsChangingEventArgs args)
{
    if (args.Action == NotifyCollectionChangedAction.Add)
    {               
        foreach (var item in args.AddedItems)
        {
            if (item.SortDirection == ListSortDirection.Ascending)
                item.SortDirection = ListSortDirection.Descending;
        }
    }
}

Sample Link:

WPF

Did you find this information helpful?
Yes
No
Help us improve this page
Please provide feedback or comments
Comments (0)
Please sign in to leave a comment
Access denied
Access denied