Accessibility: Problems navigating radio buttons in a dialog using the keyboard
When radio buttons are included in a dialog, keyboard navigation does not work correctly.
The following issues occur:
- When radio buttons are the first focusable element on the dialog, it is not possible to tab to them.
- If there is a focusable element before the radio buttons, it is necessary to tab twice to enter the radio button group.
- Once inside a radio button group, it is not possible to exit the radio button group by pressing tab.
To reproduce, add the following UI element to a dialog and try to navigate through it using only the keyboard:
{
type : 'fieldset',
label : 'Radio Buttons',
children :
[
{
type : 'radio',
id : 'type',
required : true,
'default' : 'one',
items :
[
[ 'Radio1', 'one' ],
[ 'Radio2', 'two' ]
]
}
]
}
Change History (8)
Status: |
new →
confirmed
|
Version: |
3.6.2 →
3.2
|
Resolution: |
→ duplicate
|
Status: |
confirmed →
closed
|
Resolution: |
duplicate
|
Status: |
closed →
reopened
|
Status: |
reopened →
confirmed
|
Resolution: |
→ duplicate
|
Status: |
confirmed →
closed
|
Summary: |
Accessibility: Problems navigating radio buttons on a dialog using the keyboard →
Accessibility: Problems navigating radio buttons in a dialog using the keyboard
|
DUP of #8401.