I have a Blazor Grid with the following properties:
When I click on a row the row is highlighted, but when I use the keyboard to navigate the highlight stays on the last row I clicked on.
The keyboard navigates to a cell and draws a thin, barely visible, border on the cell, when I hit enter the `OnRowClickCallback` is called on the new row but the highlight remains on the old row.
How do I get the row highlight to change with the navigation?
<TelerikGrid
OnRead="@OnGridRead"
Data="Data"
Pageable="true"
PageSize="10"
Width="100%"
Sortable="true"
Navigable="true"
Groupable="true"
SelectionMode="GridSelectionMode.Single"
SortMode="@SortMode.Single"
FilterMode="@GridFilterMode.FilterMenu"
Resizable="true"
OnRowClick="OnRowClickCallback"
Reorderable="true"
AutoGenerateColumns="true">
The keyboard navigates to a cell and draws a thin, barely visible, border on the cell, when I hit enter the `OnRowClickCallback` is called on the new row but the highlight remains on the old row.
How do I get the row highlight to change with the navigation?