Back to Devexpress

GridFocusedRowChangedEventArgs Class

blazor-devexpress-dot-blazor-ba240e7e.md

latest2.6 KB
Original Source

GridFocusedRowChangedEventArgs Class

Contains data for the FocusedRowChanged event.

Namespace : DevExpress.Blazor

Assembly : DevExpress.Blazor.v25.2.dll

NuGet Package : DevExpress.Blazor

Declaration

csharp
public class GridFocusedRowChangedEventArgs :
    GridFocusedRowChangedEventArgsBase

Remarks

The FocusedRowChanged event allows you to handle focused row changes. The GridFocusedRowChangedEventArgs object contains data related to the event.

In the following code snippet, the FocusedRowChanged event handler displays additional information about the currently focused employee.

razor
<DxGrid Data="GridData" PageSize="5"
        FocusedRowEnabled="true" FocusedRowChanged="Grid_FocusedRowChanged">
    <Columns>
        <DxGridDataColumn FieldName="FirstName" />
        <DxGridDataColumn FieldName="LastName" />
        <DxGridDataColumn FieldName="Title" />
        <DxGridDataColumn FieldName="HireDate" />
    </Columns>
</DxGrid>

<DxFormLayout>
    <DxFormLayoutItem Caption="@MemoCaption" CaptionPosition="CaptionPosition.Vertical" 
                      Visible="@ShowMemo" ColSpanMd="12">
        <DxMemo Text=@Notes Rows="4"/>
    </DxFormLayoutItem>
</DxFormLayout>

@code {
    string MemoCaption { get; set; }
    string Notes { get; set; }
    bool ShowMemo { get; set; }

    void Grid_FocusedRowChanged(GridFocusedRowChangedEventArgs e) {
        if(e.DataItem != null) {
            ShowMemo = true;
            var employee = (Employee)e.DataItem;
            MemoCaption = employee.FirstName + " " + employee.LastName + " details:";
            Notes = employee.Notes;
        }
        else {
            ShowMemo = false;
        }
    }

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

Run Demo: Grid - Focused Row

Inheritance

Object DevExpress.Blazor.Grid.Internal.GridEventArgsBase DevExpress.Blazor.Grid.Internal.GridFocusedRowChangedEventArgsBase GridFocusedRowChangedEventArgs

See Also

GridFocusedRowChangedEventArgs Members

DevExpress.Blazor Namespace