Radzen DataGrid selected row higlighting was broken after pagination

Hello,

I'm using Radzen DataGrid and when I'm selecting one row on a first page row is highlighting then I'm going to second page through pagination then I'm coming back to the first page so row losts its highlight. By default, it should be keep highlighting regardless changing pages. Please give me an advice that what can impact to break this default behavior?

Here is my DataGrid implementation.

 <RadzenDataGrid @ref="rolesGrid"
                    class="radzen-datagrid-style"
                    AllowFiltering=false
                    AllowPaging=true
                    AllowSorting=true
                    Data="@Roles"
                    AllowColumnResize=false
                    AllowAlternatingRows=true
                    PageSize="25"
                    PageSizeOptions="@PageSizeOptions"
                    PagerHorizontalAlign="HorizontalAlign.Center"
                    FilterMode="FilterMode.Advanced"
                    ShowPagingSummary="true"
                    LogicalFilterOperator="LogicalFilterOperator.Or"
                    SelectionMode="DataGridSelectionMode.Single"
                    TItem="UserRoleModel"
                    @bind-Value="SelectedRow"
                    RowClick="RowClicked">
        <EmptyTemplate>
            <p style="color: lightgrey; font-size: 24px; text-align: center; margin: 2rem;">No Records</p>
        </EmptyTemplate>
        <Columns>
            <RadzenDataGridColumn SortOrder="SortOrder.Ascending" TItem="UserRoleModel" Sortable="true" Property="Name" Title="User Role Name" Filterable=false Width="450px">
                <Template Context="dto">
                    <a style="color: #0071c1; text-decoration: underline; cursor: pointer;" onclick="@(() => OpenRole(dto))">@dto.Name</a>
                </Template>
            </RadzenDataGridColumn>
            <RadzenDataGridColumn TItem="UserRoleModel" Sortable="true" Property="Description" Title="Description" Filterable=false />
        </Columns>
    </RadzenDataGrid>

Not sure what’s your expectations however DataGrid row selection is associated with specific item(s) and the row will be highlighted only if the selected item(s) is part of the current page. You can check our demos for reference:

Hey, @enchev , thanks for your reply. I've compared the demo with my grid but there is not any considerable difference regarding to the row selection. I did everything properly, but I think that something impacts to this default behavior which I couldn't find yet.

Hello, @enchev , unfortunately I couldn't figure out reason of disappearing row highlighting on pagination and on changing page size options. Could you please, watch the screen record and advise, why it happens?

Radzen Grid and 1 more page - Personal - Microsoft​ Edge 2023-06-30 13-07-33.mp4 - Google Drive