tab-ordering

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

Tab movement in shoes

Hello, I have a problem I have a: stack { flow { para "Enter text:" edit_line } edit_box } (simplified version). When user is on edit_line and presses tab, I want it to move to edit_box control (currently, it just loses focus). Thanks, Juraj. ...

Javascript: 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 edit followed by a calendar icon that pops up a calendar. I want to be able to tab from th...

Flash Tab Order changes

Hi, 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 constructed from these seems to be permanent, but the content of the application is dynamic (b...

Tab order VSTO Excel

I'm looking through some VSTO excel code and there seems to be a major wheel reinvention swtich statement in an event handler which is attached to every control (text boxes, combos etc), calling Focus() depending on the Tag property (being used in place of a tabIndex property) Is tab order alien to VSTO? ...

Controling tabbing focus within popup javascript widget context

Hello, I'm working on a lightbox style javascript plugin that pops up an image with next+previous buttons and a close button. I want to make it so that tabbing will only jump between the three presented buttons in the popup, not go through the three of them and then continue on the page content in the background. Does anyone have any s...

Is there a simple way to allow tabbing between non-VCL and VCL controls on a Delphi form?

I have a Delphi form with a bunch of VCL controls, like TButton and TCheckBox, and an instance of the Scintilla text editor. I want to be able to tab into and out of the text editor but it looks like tabs are handled by the VCL library not Windows. I stepped though the code and it looks like tabs are handled by the SelectNext and Fin...

How to stop AjaxToolkit AsyncFileUpload tabbing order from stopping on filepath text box.

I have an ASPX page with an AsyncFileUpload control from the AJAX Control Toolkit, but when I try to tab through the tab order, the tab will not allow a tab past the filepath textbox (part of the AsyncFileUpload control). This control is contained within an update panel (if that matters in this implementation). How can I continue on in...

How to automate detection of out of order tab navigation in Qt dialogs?

Typically, a dialog wishes to have tab navigation proceed in an orderly fashion through a dialog that roughly corresponds to the order of reading a book. When new fields are added to a dialog by engineers on a team, the new widgets can often not be inserted in tab correct order. Can anyone think of a way to automate the detection of ou...

Compact Framework: Tab Order Is Not Working As Specified In Properties

compact framework app: .net 3.5, c#. i have a user control with 4 drop down lists on it. it's a progressive selection scenario - pick first drop down list, and the next one fills up with items. pick the next item, the third fills up with items, and same with third to fourth. it seems that no matter how i set the tab order of these dro...

How to make controls "tabable" when loaded from plugin in Cocoa app?

I have an application thad loads in plugins that have their own UI. There is an IBOutlet called ContainerView in my AppDelegate. When the plugin loads, it puts its own view (that is stored in a xib in the plugin bundle) into the Container view like so [ContainerView addSubview:viewFromPlugin]; When the view loads, everything is fine ...

WinForms TabOrder tool: Broken or just confusing?

Hi all, I have a form with a bunch of panels, and some panels inside groupboxes. When using the TabOrder tool in Vs2005, the controls outside of containers are given integers (0), the controls inside panels are given decimals (72.0), and the controls within panels within groupboxes are given three-part values (73.73.0). Unfortunately th...

Tabbing in and out of Java applet on web page

I have a Java applet with several focusable elements that is embedded in a web page. Is it possible to make the elements in the applet part of the logical tab order of the rest of the page? To clarify: I would like to use Tab to move from an element outside the applet to the first element of the applet and then use Shift+Tab to move ba...