how do you get h:selectOneRadio to not display items inline, considering it only renders one row? or how do you get it to render one row per item?
<h:selectOneRadio value="#{cc.attrs.radioItem}" styleClass="radioOptions">
<f:selectItems value="#{cc.attrs.radioItems}" />
<f:ajax render="detailPanel :pricingTable" />
</h:selectOneRadio>
You need to set the
layoutattribute topageDirection.This would not easily be fixable by CSS as it actually renders a
<table>.See also:
<h:selectOneRadio>tag documentation