Opened 11 years ago
Closed 11 years ago
#13546 closed defect (wontfix)
dijit.form.Select - Tab closes drop down menu but not move focus to next tab stop.
Reported by: | Siqi | Owned by: | |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | Dijit - Form | Version: | 1.6.1 |
Keywords: | focus | Cc: | [email protected]… |
Blocked By: | Blocking: |
Description (last modified by )
For ComboBox, TimeTextBox, TAB will close the drop down menu and move focus to next tab stop. But for dijit.form.Select, TAB only closes the drop down menu, the focus remains on the widget...
Change History (1)
comment:1 Changed 11 years ago by
Component: | General → Dijit - Form |
---|---|
Description: | modified (diff) |
Resolution: | → wontfix |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Yes, focus is moved to the Select. This is the expected behavior for any popups where focus goes to the popup, for example a ColorPalette from a DropDownButton in a Toolbar.
I agree it would be a nicer user experience if focus went to the next control, but that's difficult/expensive to compute as you need to scan the whole page for all available focusable node, sort by tabindex, etc. The tabOrder() method in dijit/tests/helpers.js is a good start.