Declined
Last Updated: 29 Sep 2023 12:28 by ADMIN
Leon
Created on: 21 Mar 2023 18:16
Category: UI for Blazor
Type: Bug Report
0
[Accessibility] GridColumns control filter and scroll control not accessibility through tab

   <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>

 

 

3 comments
ADMIN
Tsvetomir
Posted on: 29 Sep 2023 12:28

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

Stay tuned by visiting our public roadmap and feedback portal pages! Or perhaps, if you are new to our Telerik family, check out our getting started resources!
Leon
Posted on: 30 Mar 2023 04:44
Setting the Navigable parameter to true on the TelerikGrid control does enable tabbing into the filter and edit/scroll controls but once the tab enters the filters and edit/scroll controls it is not possible to tab out of these controls. It just stuck cycling through these controls...
ADMIN
Svetoslav Dimitrov
Posted on: 28 Mar 2023 09:49

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/.