Questions tagged [keyboard-navigation]
126 questions
6
votes
2 answers
Adding navigation keybindings for vim command line
Perhaps I'm not using the right terminology, but I'm struggling to try to find a way to add some key bindings for use while navigating the command line in vim.
An example would be the following command:
:e…

Peter Zich
- 512
- 3
- 13
5
votes
1 answer
How to find out which element has focus when debugging WPF?
I'm navigating with the keyboard, and I can't find visually which element has the focus. While debugging I managed to break the execution in a method inside the Window but I don't know which property will reveal the current focused control.

Jader Dias
- 88,211
- 155
- 421
- 625
5
votes
1 answer
How to make tab index work for dropdowns?
I have a header with a bootstrap dropdown component and I am trying to enable keyboard navigation to that element by using tabindex. The following is the html and simple css:
HTML:

ShellZero
- 4,415
- 12
- 38
- 56
5
votes
4 answers
RTL (right-to-left) keyboard navigation in an HTML
I am working with some HTML which contains a
4
votes
2 answers
accessibility when focused link is hidden behind a fixed-position footer when using TAB to proceed
I ran into a detail concerning accessibility, not in regard to screenreaders and blind users, but in regard to pure keyboard navigation.
Edit / Addition: I would like to emphasize a part of my question which hasn't been addressed at all in the two…

Johannes
- 64,305
- 18
- 73
- 130
4
votes
3 answers
How can i make a CSS drop down menu accessible for keyboard navigation?
I saw already some solutions, but i can't figure out how can i put some of these solutions in my code, or some solutions uses something that i can't use in my project.
Let's go to the question:
I need to make an already existing CSS drop-down menu…

Will
- 51
- 1
- 5
4
votes
2 answers
How to prevent tab navigation to a control, while allowing directional navigation to that control
In WPF (MVVM, no code-behind), say I have the following xaml:

Matt Jacobi
- 864
- 7
- 17
4
votes
0 answers
Floating window and Ribbon integration with keyboard navigation
I am working on an MDI application that has a ribbon and also supports docking/floating windows. I have troubles to keep the focus on the last floating window while accessing some commands on the ribbon.
I have found this great post that gave me…

andras
- 41
- 1
3
votes
0 answers
WPF - control keyboard navigation in TreeView
I have a problem with the keyboard navigation in my treeview.
I'm implementing a 3 column table. Each element in the first column consists of 3 columns:
An Icon, a textBlock and an expander. If the element's property "hasItems" is false, the…

user429400
- 3,145
- 12
- 49
- 68
3
votes
0 answers
Tab key navigation inside Telerik RadGridView
In a Telerik RadGridView with a GroupDescriptor set, once the focus enters the grid, the focus won't leave by pressing tab. It simply loops back to the beginning of the grid.
That is, there are some controls above and below the grid. When hitting…

PeterL
- 1,397
- 11
- 15
3
votes
1 answer
NSTextField captures return key event twice
I have a textfield and two buttons. The user should be able to press return when they’re done editing the textfield, and then return again to activate one or the other of the buttons, depending on conditions. In order to make it clear to the user…

Wienke
- 3,723
- 27
- 40
3
votes
2 answers
How to update $index when list changes in angular
I'm trying to implement a keyboard navigation in a multi-level List.
Therefor i try to give every Item in the List a unique ID, like 5.2.1(category.item.subitem).
I already tried a lot of stuff, like ng-init the index to a variable on ng-repeat, an…

Markus Harthum
- 79
- 2
- 8
3
votes
3 answers
KeyBoard Navigation for menu using jquery
I am trying to add keyboard navigation to Menu(ul li based
) , i have bound the keydown event to menu (or should i bind keydown to the document ?)
the handler function used is given below
KeyDown: function(e) {
var toFocus =…

ravikiran
- 1,327
- 5
- 14
- 18
2
votes
0 answers
How to Fix Keyboard Navigation Focus Down Getting Stuck in EditText on Android API 26+
The exact same APK behaves differently on Android versions before API 26 and after it. I have simplified my layout down to the following example:

Craig Heath
- 566
- 4
- 14
2
votes
2 answers
jQuery SlidesJS keyboard navigation
My site uses SlidesJS for a photo slideshow.
My question is, how can I use keyboard navigation?
I've added this GitHub solution to my head tag (lines 94-116) but the keyboard's left & right arrow keys still aren't working.
How can I fix this?

Ryan
- 6,027
- 16
- 52
- 89