This is a migrated thread and some comments may be shown as answers.

Keyboard accessibility

1 Answer 44 Views
FileExplorer
This is a migrated thread and some comments may be shown as answers.
Ian Dunkerly
Top achievements
Rank 1
Ian Dunkerly asked on 18 Dec 2009, 11:05 AM
There appear to be issues regarding keyboard navigation of the RadFileExplorer. These issues are evident in the demo provided on:

http://demos.telerik.com/aspnet-ajax/fileexplorer/examples/default/defaultcs.aspx

Specifically, the issues are:

1. In Firefox, keyboard navigation of the tree does not work. Keyboard navigation of the grid is fine.
2. In IE(7+), whilst keyboard navigation of both the tree and the grid seem to work okay, navigation from the grid back to the tree is awkward (I have actually been unable to do it, so may be impossible). Forward navigation appears to be acceptable.

1 Answer, 1 is accepted

Sort by
0
Yana
Telerik team
answered on 23 Dec 2009, 02:40 PM
Hello Ian,

You should set TabIndex property of the treeview in the FileExplorer like this:

FileExplorer1.TreeView.TabIndex = 1;

also subscribe to ClientFolderChange event of the explorer and  add the following code in its handler:

function clientFolderChange(sender, args) {
    sender.get_tree().get_element().focus();
 }

All the best,
Yana
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
FileExplorer
Asked by
Ian Dunkerly
Top achievements
Rank 1
Answers by
Yana
Telerik team
Share this question
or