Hello everyone, I’m having troubles with the focus change by pressing the Tab key on the keyboard. For RadioButtonGroup and CheckBoxGroup I would like to be able to navigate them by changing the focus pressing the Tab key on the keyboard. The current behavior is (assuming that your focus in now on the previous component of the component group, for example a TextField):
- Press Tab → the focus is not shown, it seems that the group component has focus.
- Press Tab → the first child component or the selected one is focused.
- Press left or right arrow keys → navigate through the RadioButton/Checkbox of the component group.
The behavior I need should be :
- Press Tab → the first child component or the selected one is focused.
- Press Tab → focus the next child component.
- Press Shift Tab → focus the previous child compoenent.
In other words I would like to be able to navigate the whole form only using Tab and Shift Tab.
Thank you in advance