Skip to main content

DevExpress v24.2 Update — Your Feedback Matters

Our What's New in v24.2 webpage includes product-specific surveys. Your response to our survey questions will help us measure product satisfaction for features released in this major update and help us refine our plans for our next major release.

Take the survey Not interested

GridFocusedRowChangedEventArgs.VisibleIndex Property

Returns the visible index of the focused row.

Namespace: DevExpress.Blazor

Assembly: DevExpress.Blazor.v24.2.dll

NuGet Package: DevExpress.Blazor

#Declaration

C#
public int VisibleIndex { get; }

#Property Value

Type Description
Int32

If a data row is focused, the property returns this row’s visible index. The property returns -1 if a group or new row is focused or the Grid displays no rows.

#Remarks

Refer to the GridCustomizeGroupValueDisplayTextEventArgs class description for more information.

razor
<DxGrid @ref="Grid" Data="GridData" PageSize="5"
        FocusedRowEnabled="true"
        FocusedRowChanged="e => rowNumber = e.VisibleIndex + 1">
    <Columns>
        <DxGridDataColumn FieldName="FirstName" />
        <DxGridDataColumn FieldName="LastName" />
        <DxGridDataColumn FieldName="Title" />
        <DxGridDataColumn FieldName="HireDate" />
    </Columns>
</DxGrid>
<text>The focused row number is @rowNumber</text>
@code {
    IGrid Grid { get; set; }
    int rowNumber { get; set; }

    object GridData { get; set; }
    protected override async Task OnInitializedAsync() {
        GridData = await NwindDataService.GetEmployeesAsync();
    }
}
See Also