I was doing my unit testing for the form, and found out that there is some serious problem with the automatic tab index that Orbeon gives.
In my case I have the need for following tab indexes 1-7 as shown by number in the figure.
Model:
<xforms:model>
<xforms:instance id="dropdown-values">
<form>
<yes-no>
<options>Yes</options>
<options>No</options>
</yes-no>
</form>
</xforms:instance>
</xforms:model>
Logic to create the radio in form:
<xforms:itemset nodeset="instance('dropdown-values')/yes-no/options">
<xforms:label ref="." />
<xforms:value ref="." />
</xforms:itemset>

The example above has a functionality like when "No" is selected in the "Enable text" option, the following text-boxes are disabled. Currently Orbeon is providing a default tabindex and switching from selected radio button to the next field. I.e.:
- if radio is selected as "no", the navigation using tab will be 2->6 and repeat
- if radio is selected as "Yes", the navigation using tab will be 1->3->4->5->7 and repeat
But the functionality intended is:
- if radio is selected as "no", the navigation using tab will be 1->2->5->6 then repeat.
- if radio is selected as "Yes", the navigation using tab will be 1->2->3->4->5->6->7
