Questions tagged [keyboard-navigation]
126 questions
1
vote
2 answers
Keyboard Input with Webshim's Date Picker
I am using the webshims library to support older browsers better with more modern features. While the date picker works great with the mouse I seem to be having problems using it from the keyboard. The easiest way to see this is visit the demo page.…

Eric Anderson
- 3,692
- 4
- 31
- 34
1
vote
1 answer
Keyboard navigation in WPF grid using arrow keys
I have a grid which contains a number of textboxes. I want to move from one text box to other using up/down/left/right keys.
I have tried setting KeyBoardNavigation.DirectionNavigation property on the grid but it doesn't work. However the Tab…

indra
- 145
- 3
- 11
1
vote
0 answers
How to enable keyboard navigation only when JSSOR slider has focus
I have two JSSOR sliders on a page. I need my page to be keyboard navigable for "accessibility" purposes. So I set $ArrowKeyNavigation to true, and now I can keyboard navigate both sliders. Trouble is, the arrow keys move through both sliders at…

andysd
- 126
- 6
1
vote
1 answer
How to create a user-impaired accessible website: surfing without a mouse?
I have created a webpage using Backbone.js and Marionette.js that mostly consists of a bootstrap accordion view that displays a list of items when the accordion header is clicked. Each item can also be clicked, which will show a hidden div of…

Claire
- 23
- 3
1
vote
2 answers
keyboard navigation using knockout
I have an observable array in my viewmodel which I am binding to a list of div elements using foreach and template binding. How can I navigate through these div elements using keyboard's up and down arrow key.
The way I want is when the user clicks…

theRev
- 109
- 1
- 2
- 12
1
vote
1 answer
Keybord will not close after back from viewController in iOS 7.0
I have one ViewController with custom view class.
I have handled keyboard notification by adding into viewWillAppear method and remove notification in viewDidDisappear.
Notification adding into viewWillAppear:
[[NSNotificationCenter defaultCenter]…

Punita
- 1,338
- 2
- 13
- 21
1
vote
2 answers
p:selectOneMenu doesn't receive focus on tab key navigation
I have a form with and components next to each other. When the focus is on the input text and I press the tab key in order to navigate to select one menu by keyboard, then the focus is lost. I don't see which…

midoDev
- 97
- 1
- 2
- 7
1
vote
2 answers
Up/Down/Left/Right keyboard navigation with jQuery?
I have a list of div's all with a set and equal height/width that are float:left so they sit next to each other and fold under if that parent is smaller than the combined with of the items.
Pretty standard.
This is to create a list of the twitter…

Hailwood
- 89,623
- 107
- 270
- 423
1
vote
2 answers
Showing the browser’s ‘select file’ dialog when focusing input[type=file] through keyboard navigation
As the title says, I want the ‘select file’ dialog to open when a certain input gets focus by tabbing through the form fields (using keyboard navigation). By default, the ‘select file’ window only opens when the field is clicked.
I put up a page on…

Mathias Bynens
- 144,855
- 52
- 216
- 248
1
vote
1 answer
jQuery Menu needs to drop when using keyboard
I have a jQuery menu (jQuery 1.4.2 and UI 1.8.6) that I need to drop down when you tab into it with the keyboard. It needs to behave the same with the keyboard as it does with the mouse. When you mouse over it, it drops down, then remove the…

user1666190
- 25
- 6
1
vote
2 answers
Keyboard navigation (up & down arrow) for Ajax drop down
I followed W3Schools tutorial on making the AJAX live search, and it has been working fine. I return my AJAX results as anchor elements.
I'd like to add keyboard navigation (i.e. up arrow and down arrow) for the Ajax drop-down, and my best result is…

mline86
- 28
- 1
- 6
1
vote
0 answers
Adding Keyboard Navigation to Ajax Live Search
I've managed to add a working "Live Search" form to my PhP/MySQL web application using the tutorial provided by w3schools website. However, this form doesn't have any keyboard navigation and I feel like that really makes it kind of unusable. I've…

JToland
- 3,630
- 12
- 49
- 70
1
vote
1 answer
ListView Tab Navigation Across Columns where ListViewItems are Grids
I have a ListView that presents items horizontally. Each Item is a 1 column Grid. The appearance is of a grid where the number of columns is dynamic. All of this works and looks like I want it to, except tab navigation. I have…

scuba88
- 458
- 2
- 4
- 13
1
vote
0 answers
Adding keyboard navigation to a CheckBoxList in dropdown
I have a "DropDownCheckBoxList" user control I created from scratch using a Textbox, an Image (the arrow) and a hidden ASP.Net CheckBoxList control in a drop-down DIV.
Combined with a lot of JQuery it works well except for one last feature...…

iCollect.it Ltd
- 92,391
- 25
- 181
- 202
0
votes
1 answer
KeyboardNavigation.TabNavigation="Once" on Toolbar does not lose focus unless all elemets are contained in another container
In the XAML below, the first toolbar (Toolbar1 below) does not lose focus and traverses all elements even with KeyboardNavigation.TabNavigation="Once" set. The only way I have make it work is by putting all elements of the toolbar into another…

DemblaM
- 1
- 2