Greeting all,
I've designed a form in QT Designer 4.2.2 and have a QGroupBox with four radio buttons (autoExclusive = true) in it. Using Designer, I've specified the tab order of the buttons to be sequential. Yet when I tab through the objects in the form, I tab approapriately to the first radiobutton in the GroupBox, but then upon tabbing again, the focus goes to the next indexed item OUTSIDE the GroupBox. That is, by skipping over the next three radio buttons the tabbing order of the buttons has been ignored . If I instead select a different button (e.g. checked = True) , the tabbing will focus on that button, but additional tabbing will skip all the other buttons.

It seems that this is likely due to the buttons being autoExclusive. Is there a way to ensure the correct tabbing order other than changing the buttons to have autoExclusive = false and scripting the autoexclusiveness property myself?

Thanks in advance for your help.

Andrew