Skip to main content

DxGridDataColumn.SortIndexChanged Event

Fires when the column’s sort index changes.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v23.2.dll

NuGet Package: DevExpress.Blazor

Declaration

[Parameter]
public EventCallback<int> SortIndexChanged { get; set; }

Parameters

Type Description
Int32

A new value of the SortIndex property.

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 Grid component, refer to the following topic: Sort Data in Blazor Grid.

See Also