ColumnBase.SortMode Property
Gets or sets how the column’s data is sorted when sorting is applied to it. This is a dependency property.
Namespace: DevExpress.Xpf.Grid
Assembly: DevExpress.Xpf.Grid.v24.2.Core.dll
NuGet Package: DevExpress.Wpf.Grid.Core
Declaration
Property Value
Type | Default | Description |
---|---|---|
ColumnSortMode | Default | A ColumnSortMode enumeration value that specifies the sort mode. |
Available values:
Name | Description |
---|---|
Default | The actual sort mode is determined by a control. See the property description for more details. |
Value | Sorts the column’s data by the column’s edit values (these are synchronized with the bound data source’s values). |
DisplayText | Sorts the column’s data by the column’s display text (the strings displayed within the column’s cells). |
Custom | Applies sort options specified in the In data grids, this mode also applies group options from the |
Remarks
The SortMode
property specifies the algorithm used to sort the column’s data (by display text, edit value, or a custom sorting algorithm).
The Default
option is DisplayText
for columns that use in-place editors inherited from the LookUpEditSettingsBase class (ComboBoxEditSettings, LookUpEditSettings). The Default
option is Value
for other columns.
Follow the steps below to apply custom sort and group options:
- Specify the ColumnBase.SortOrder or GridColumn.GroupIndex property.
- Set the
SortMode
property toCustom
. - Handle the GridControl.CustomColumnSort or GridControl.CustomColumnGroup event.
Refer to the following help topics for more information: Sorting Modes and Custom Sorting, Group Modes and Custom Grouping.
Example
The following example demonstrates how to use custom rules to sort data in the GridControl:
<dxg:GridControl x:Name="grid"
CustomColumnSort="OnCustomColumnSort">
<dxg:GridControl.Columns>
<dxg:GridColumn FieldName="Day" GroupIndex="0" SortMode="Custom"/>
<dxg:GridColumn FieldName="Employee"/>
</dxg:GridControl.Columns>
</dxg:GridControl>
void OnCustomColumnSort(object sender, CustomColumnSortEventArgs e) {
if(e.Column.FieldName == "Day") {
int dayIndex1 = GetDayIndex(e.Value1);
int dayIndex2 = GetDayIndex(e.Value2);
e.Result = dayIndex1.CompareTo(dayIndex2);
e.Handled = true;
}
}
int GetDayIndex(object day) {
return (int)Enum.Parse(typeof(DayOfWeek), (string)day);
}
Related GitHub Examples
The following code snippets (auto-collected from DevExpress Examples) contain references to the SortMode property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.