I am very new to
JSF. I am getting some simple alignment problems of radio buttons...
Here is the code
<h:selectOneRadio id="action" value="#{bean.action}">
<f:selectItem itemValue="A" itemLabel= "AA"/>
<f:selectItem itemValue="B" itemLabel="BB"/>
<f:selectItem itemValue="C" itemLabel="CC" />
<f:selectItem itemValue="D" itemLabel="DD" />
</h:selectOneRadio>
When I run this code, I got all the radio buttons side by side. I like to get each radio button in one row(like in <tr><td>...</td></tr>). I tried writing <tr><td> in between radio buttons but when I view source while running app, all those <tr><td>'s in between selectOneRadio shows up before and then radio's are displayed. Please help me out.
Thanks In Advance..