We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 29f5cc0 commit afb301bCopy full SHA for afb301b
Sorting_Grid_Server/Pages/SortingEvents.razor
@@ -44,7 +44,10 @@ Using these events you can perform the needed actions.
44
{
45
if (args.RequestType.Equals(Syncfusion.Blazor.Grids.Action.Sorting))
46
47
- args.Cancel = true;
+ if (args.ColumnName.Equals(nameof(Order.OrderID)))
48
+ {
49
+ args.Cancel = true;
50
+ }
51
}
52
53
0 commit comments