diff --git a/WindowsForms/DataGrid/Sorting.md b/WindowsForms/DataGrid/Sorting.md index 88bc06919..154d10ca7 100644 --- a/WindowsForms/DataGrid/Sorting.md +++ b/WindowsForms/DataGrid/Sorting.md @@ -35,6 +35,8 @@ Me.sfDataGrid1.Columns("CustomerID").AllowSorting = False N>The `GridColumn.AllowSorting` takes higher priority than `SfDataGrid.AllowSorting` property. 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. + ![UI Sorting in SfDataGrid windowsforms](Sorting_images/Sorting_Image1.png) ## Adding Sort Columns