diff --git a/wpf/DataGrid/Sorting.md b/wpf/DataGrid/Sorting.md index af4a68115..62b4a9e3a 100644 --- a/wpf/DataGrid/Sorting.md +++ b/wpf/DataGrid/Sorting.md @@ -51,6 +51,8 @@ N> The [GridColumn.AllowSorting](https://help.syncfusion.com/cr/wpf/Syncfusion.U End users can sort the column by clicking column header cell. Once the columns get sorted, the sort indicator will be displayed on the right side of the column header. +N> Sorting is not supported for `GridHyperLinkColumn` when the bound property type is `Uri`, since [`System.Uri`](https://learn.microsoft.com/en-us/dotnet/api/system.uri?view=net-10.0) does not implement [`IComparable`](https://learn.microsoft.com/en-us/dotnet/api/system.icomparable?view=net-10.0). If sorting is required, a custom comparison logic based on a comparable value should be used. + ![Sorting in WPF DataGrid](Sorting_images/wpf-datagrid-sorting.png)