Hi,
I have two radio button options. I want to layout the horizontal space between radio button options.
I tried following:
<af:selectOneRadio layout="horizontal">
<af:forEach var="item" items="#{bindings.LocationControlCode.items}">
<af:selectItem label="#{item.label} value="#{item.value}"/>
<af:spacer width="100"/>
</af:forEach>
</af:selectOneRadio>
But this does not render the white space between radio options.
I got a workaround which is leaving spaces in the label , but this is not as per coding standards.
Is there any other way to layout horizontal space between radio options.
Following is my requirement.

Thanks
Rishab