diff --git a/blazor/treegrid/sorting.md b/blazor/treegrid/sorting.md index 2c943f6660..98f3cd09e1 100644 --- a/blazor/treegrid/sorting.md +++ b/blazor/treegrid/sorting.md @@ -160,7 +160,7 @@ public class TreeData ## Sorting events -During the sort action, the tree grid component triggers two events. The [ActionBegin](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_OnActionBegin) event triggers before the sort action starts, and the [ActionComplete](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_OnActionComplete) event triggers after the sort action is completed. Using these events the needed actions can be performed. +During the sort action, the tree grid component triggers two events. The [Sorting](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_Sorting) event triggers before the sort action starts, and the [Sorted](https://help.syncfusion.com/cr/blazor/Syncfusion.Blazor.TreeGrid.TreeGridEvents-1.html#Syncfusion_Blazor_TreeGrid_TreeGridEvents_1_Sorted) event triggers after the sort action is completed. Using these events the needed actions can be performed. {% tabs %} @@ -238,8 +238,6 @@ public class TreeData {% endtabs %} -N> The **args.requestType** is the current action name. For example, in sorting the **args.requestType** value is *sorting*. - ## Touch interaction When the tree grid header is tapped on the touchscreen devices, the selected column header is sorted. A popup ![Multi column sorting](images/sorting.jpg) is displayed for the multi-column sorting. To sort multiple columns, tap the popup![Multi sorting](images/msorting.jpg), and then tap the desired tree grid headers.