Hi, i have the following in my page.
<h:selectOneRadio layout="pageDirection" >
<s:selectItems value="#{usageList}" var="entry"
label="#{labels[entry.label]}" itemValue="entry" />
</h:selectOneRadio>
With this code I get a radio Button and after it the label of the same.
[ ] User
[ ] Administrator
But I want to do the following.
User [ ]
Administrator [ ]
Is it possible to do that with that using selectItems and selectOneRadio, or should I create the entries one by one.