<GridColumns>
@if (Columns == null || Columns.Count == 0)
{
<GridColumn Resizable="true" Title="Data" FieldType="typeof(string)" />
}
else
{
@foreach (var column in Columns)
{
if (column.PreferredType != null)
{
<GridColumn Resizable="true" Field="@column.FieldName" Title="@column.Title" FieldType="column.PreferredType" />
}
else
{
<GridColumn Resizable="true" Field="@column.FieldName" Title="@column.Title" />
}
}
}
</GridColumns>
Hi Leon,
To move the focus out of the Filter row, use the ESC key. This would focus on the parent cell and allow you to continue with the navigation through the other parts of the grid.
Check out our dedicated demo on Keyboard Navigation. Each key has a summary what it does in different cases.
Regards,
Tsvetomir
Progress Telerik
Hello Leon,
To enable the keyboard navigation in the Grid you must set the Navigable parameter to true.
Do you observe the same behavior when you set the Navigable parameter to true?
Regards,
Svetoslav Dimitrov
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.