DxTreeListDataColumn.SortIndexChanged Event
Fires when the column’s sort index changes.
Namespace: DevExpress.Blazor
Assembly: DevExpress.Blazor.v25.1.dll
NuGet Package: DevExpress.Blazor
Declaration
[Parameter]
public EventCallback<int> SortIndexChanged { get; set; }
Parameters
| Type | Description |
|---|---|
| Int32 | A new SortIndex value. |
Remarks
The SortIndexChanged event fires each time the SortIndex property value changes. The event is handled automatically when you use two-way data binding for the SortIndex property (@bind-SortIndex).
For more information about data sorting in the TreeList component, refer to the following topic: Sort Data in Blazor TreeList.
See Also