wpf-devexpress-dot-xpf-dot-grid-dot-gridcontrol-6f492689.md
Enables you to sort data using custom rules.
Namespace : DevExpress.Xpf.Grid
Assembly : DevExpress.Xpf.Grid.v25.2.dll
NuGet Package : DevExpress.Wpf.Grid.Core
public event CustomColumnSortEventHandler CustomColumnSort
Public Event CustomColumnSort As CustomColumnSortEventHandler
The CustomColumnSort event's data class is CustomColumnSortEventArgs. The following properties provide information specific to this event:
| Property | Description |
|---|---|
| Column | Gets the column whose values are being compared. |
| Handled | Gets or sets whether a comparison operation is handled and no default processing is required. |
| ListSourceRowIndex1 | Gets the index of the first of the two rows being compared in the data source. |
| ListSourceRowIndex2 | Gets the index of the second of the two rows being compared in the data source. |
| Result | Gets or sets the result of a custom comparison. |
| Row1 | |
| Row2 | |
| SortOrder | Gets the sort order applied to the column. |
| Source | Gets the grid control that raised the event. |
| Value1 | Gets the first value being compared. |
| Value2 | Gets the second value being compared. |
To sort column values using custom logic, set a column’s ColumnBase.SortMode property to ColumnSortMode.Custom, and handle the CustomColumnSort event.
When this event is fired, two rows should be compared. The column being processed is specified by the Column parameter. The Value1 and Value2 parameters identify the values of the rows within this column. The result of the custom comparison should be set to the Result parameter as follows:
The event parameter’s Handled property should be set to true if the comparison operation was handled. You can leave this parameter set to false , to invoke the default comparison mechanism after your event handler has finished. In this instance, the custom comparison operation’s result is ignored.
Note
The CustomColumnSort event does not work in Server Mode.
If you want to maintain a clean MVVM pattern and specify custom sort operations in a View Model, create a command and bind it to the CustomColumnSortCommand property.
For more information, refer to the following help topic: Sorting Modes and Custom Sorting.
The following example demonstrates how to use custom rules to sort data in the GridControl:
View Example: How to Use Custom Rules to Sort Data
<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);
}
Private Sub OnCustomColumnSort(ByVal sender As Object, ByVal e As DevExpress.Xpf.Grid.CustomColumnSortEventArgs)
If Equals(e.Column.FieldName, "Day") Then
Dim dayIndex1 As Integer = Me.GetDayIndex(e.Value1)
Dim dayIndex2 As Integer = Me.GetDayIndex(e.Value2)
e.Result = dayIndex1.CompareTo(dayIndex2)
e.Handled = True
End If
End Sub
Private Function GetDayIndex(ByVal day As Object) As Integer
Return CInt(System.[Enum].Parse(GetType(System.DayOfWeek), CStr(day)))
End Function
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the CustomColumnSort event.
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.
wpf-data-grid-implement-custom-sorting/CS/CustomSorting_CodeBehind/MainWindow.xaml#L9
<dxg:GridControl x:Name="grid"
CustomColumnSort="OnCustomColumnSort">
<dxg:GridControl.Columns>
#line 9 "..\..\..\MainWindow.xaml"
this.grid.CustomColumnSort += new DevExpress.Xpf.Grid.CustomColumnSortEventHandler(this.OnCustomColumnSort);
#ExternalSource("..\..\MainWindow.xaml",9)
AddHandler Me.grid.CustomColumnSort, New DevExpress.Xpf.Grid.CustomColumnSortEventHandler(AddressOf Me.OnCustomColumnSort)
See Also