Opened 10 years ago
Closed 8 years ago
#12998 closed defect (patchwelcome)
Grid destroys tab order
Reported by: | manklu | Owned by: | Evan |
---|---|---|---|
Priority: | high | Milestone: | future |
Component: | DojoX Grid | Version: | 1.6.1 |
Keywords: | Cc: | ||
Blocked By: | Blocking: |
Description
There are several elements which have a fixed tabindex of zero, which has catastrophic results if the tabindex of the grid is not zero.
If they can't use -1, they should use the value of the grid.
Attachments (2)
Change History (10)
Changed 10 years ago by
Attachment: | test_issue_12998.html added |
---|
comment:2 Changed 10 years ago by
If you want to try the patch, you must modify the testpage slightly.
dojo.addOnLoad(function() { var grid; grid = new dojox.grid.EnhancedGrid({ id: "grid1", store: test_store[0], structure: layout1, plugins: plugins1, tabIndex: 2 }, 'grid1'); grid.startup(); grid = new dojox.grid.EnhancedGrid({ id: "grid2", store: test_store[0], structure: layout2, plugins: plugins2, tabIndex: 1 }, 'grid2'); grid.startup(); });
comment:3 Changed 10 years ago by
Owner: | changed from evan to Evan |
---|
comment:6 Changed 9 years ago by
Milestone: | 1.8 → future |
---|---|
Priority: | blocker → high |
This is more like an a11y keyboard focusing issue, so shouldn't be a release blocker.
Also don't think we will be able to get this fully addressed in 1.8 since significant changes will be required.
comment:7 Changed 8 years ago by
comment:8 Changed 8 years ago by
Resolution: | → patchwelcome |
---|---|
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Testpage