Questions tagged [tab-ordering]

Use this tag for questions about the order in which focusable controls can be navigated to using the tab-key of a computer keyboard.

123 questions
95
votes
6 answers

Setting tab order in WPF

How do I set tab ordering in WPF? I have an ItemsControl with some items expanded and some collapsed and would like to skip the collapsed ones when I'm tabbing. Any ideas?
Román
  • 1,943
  • 2
  • 18
  • 28
56
votes
5 answers

Where is the Tab Order Assignment dialog in Visual Studio 2012?

For as long as I can recall, Visual Studio has had an integrate dialog that allows you to easily organize the tab order of your controls. I've just created my first VS 2012 WinForms project, added all of my controls and went to find the Tab Indexing…
RLH
  • 15,230
  • 22
  • 98
  • 182
22
votes
3 answers

Tab Order in interface builder?

Perhaps the hour is late, but I can't find where I can set the overall Tab Order of my interface viewer dialog, just like I can with Visual Studio. am I missing something? The tab order is all crooked. Command-R to simulate shows it.
JasonGenX
  • 4,952
  • 27
  • 106
  • 198
18
votes
3 answers

c# windows form Tab Order

I have a windows form in C# project that keeps Student Info. I caught the image: I want to add data with sequential order as follows but when I enter data to Surname textbox, TAB button jumps to E-Mail textbox, then Phone Number textbox and lastly…
Sertan Pekel
  • 593
  • 2
  • 5
  • 23
16
votes
1 answer

How to exclude a widget from tab-ordering list?

(This picture is from Qt official site, and I take it as an example.) I'd like to escape some unimportant widgets from being tab-focused. (This strategy is useful if you have a widget that you want to quickly rotate between some commonly used…
Tay2510
  • 5,748
  • 7
  • 39
  • 58
15
votes
7 answers

How do I skip items when tabbing without using tabindex?

Is there a good way, in a javascript onfocus() handler, to trampoline the focus to the next item in the tab order, without having to manually enter the ID of the item that should be next? I built an HTML date picker in Django/jQuery. It's a line…
Adam
14
votes
4 answers

WPF hosting a WinForm, Tab Navigation problems

I have run into issues when hosting a WinForms form within a WindowsFormsHost and the tab navigation. To solve I have made this simple example: Created WPF Window (starting point of app) Created WinForms Form with two TextBox on it WPF window:…
ZoolWay
  • 5,411
  • 6
  • 42
  • 76
12
votes
5 answers

Tab Order in ASP.NET MVC 3 Helpers

How can I use Tab Order property for following code: @Html.EditorFor(model => model.Cost) I tried this: @Html.EditorFor(model => model.Cost) any suggestions?
Abdullah Saqib
  • 161
  • 1
  • 2
  • 6
9
votes
3 answers

Delphi tab order

The tab order on my form in Delphi (Embarcadero® Delphi® 2010 Version 14.0) is incorrect, which means the tab key skips to seemingly random items in the form. However, when I go and change it in Delphi, it rearranges them for me, in the same…
Thomas O
  • 6,026
  • 12
  • 42
  • 60
8
votes
1 answer

Setting tab order in wpf when use from UserControls?

I have a User Control like this:
M.Azad
  • 3,673
  • 8
  • 47
  • 77
8
votes
3 answers

In wpf, how can I get the next control in the tab order

I know how to set the focus to the next control in the tab order, but I don't actually want to change focus... I just want to get the next control in the tab order (perhaps get the previous, first and last ones too.) So... howyadodat? M
Mark A. Donohoe
  • 28,442
  • 25
  • 137
  • 286
8
votes
1 answer

Fix tab order after inserting widgets in a layout in QT

I have a custom list implementation (a subclass of QWidget) in QT 5.5. The elements of the list are organized using a QVBoxLayout. At runtime, elements (which are also QWidgets) can be dynamically added to and removed from the list at any position…
Cybran
  • 2,203
  • 2
  • 17
  • 34
7
votes
1 answer

Tab order in flutter

On my Windows App ( The interface looks like this: https://i.stack.imgur.com/SibAC.png ) When I focused to Input-1, and I press Tab key on keyboard, the primary focus will focus to Input-3. Is there any way to re-arrange my focus order: Input-1 ->…
TienVD
  • 73
  • 1
  • 4
7
votes
1 answer

Tab Order on Dynamically Loaded Controls

I have a situation where I am trying to set the tab order (tabindex) for controls that are loaded dynamically. The main XAML looks like this:
Hexum064
  • 349
  • 2
  • 14
6
votes
2 answers

Flash Tab Order changes

I'm trying to add some accessibility for screen readers into a Flash application, and am running up against a sticky point. The order for tabbing through elements is set by those elements' tabIndex property. The difficulty is, the tab list…
Zoe
  • 1,833
  • 1
  • 16
  • 18
1
2 3
8 9