Sorting
Sorting is possible in two ways either programmatically by adding the appropriate SortDescriptor to the SortDescriptors collection of RadListView, or by enabling the user to sort by clicking a column header in DetailsView.
Enabling sorting on header click is done by setting both EnableSorting and EnableColumnSort property to true.
Enable column sorting
The following code snippet demonstrates how to add a SortDescriptor to RadListView:
Adding SortDescriptors
Here is the sorted data:
Before Sorting | After Sorting |
---|---|
![]() |
![]() |
Custom sorting
RadListView provides a flexible mechanism for achieving custom sorting by creating a custom comparer. The following code snippet demonstrates this. Although a SortDescriptor for the Number column is added, the items are sorted considering the Freight value:
Custom sorting
Basic Sorting | Custom Sorting |
---|---|
 |
Note that the entire sort operation is defined by this comparer. This means that you should take into account the contents of the SortDescriptors collection the RadListView when implementing this custom comparer (that is why the RadListViewElement is passed as an argument to the constructor of the above comparer).