Sorting
The data in the ListBox control can be sorted using few approaches.
The most basic sorting method that can be utilized is to manually sort the original collection assigned to the ItemsSource
of the RadListBox
control. This will re-order the items in the view.
An easier approach would be to use ICollectionView
implementation that works with sort, group and filter descriptors. One possible collection type that can be used is the Telerik's QueryableCollectionView which implements ICollectionView
. The following example shows how to setup RadListBox
and sort it by a property of the item model, using the SortDescriptors
of the collection view.
-
Create the item model.
Defining the item model
-
Define the data and the QueryableCollectionView. The
SortDescriptor
added in theSortDescriptors
collection tells which property should be used to sort the data. Multiple descriptors can be added to the collection.Setting up the data
-
Setup the RadListBox.
Setting up the view
Sorted RadListBox
The QueryableCollectionView
doesn't support live sorting. This means that the order of the items won't change automatically when a value of the property by which the view is sorted changes. To update the view, the Reset
method of the sort descriptors should be called.
Resetting the SortDescriptors
Live Sorting
To enable live sorting, a collection type that supports such functionality should be used. For example, the ListCollectionView allows this after setting its IsLiveSorting
property to true
.
Compared to the QueryableCollectionView
, the ListCollectionView
has a collection named SortDescriptions, instead of SortDescriptors. This collection view type works with SortDescription
objects.