How to put multiple rows of checkboxes of the same property?
It could be the simple question, but I can't figure it out. I used <h:selectmanyCheckbox> It has layout="pageDirection/lineDirection" values. But now I have a requirement to display 6 checkboxes of US states 2 states x 3 rows. If I had 1 vertical row of states I would put this:
<h:selectManyCheckbox id="states" value="#{myAction.states}"
required="true" styleClass="uiInputNoBorder" layout="pageDirection">
<f:selectItems value="#{myAction.stateList}" />
<f:attribute name="fieldLabel" value="State"/>
</h:selectManyCheckbox>
So can some one help me how do implement it?
Thanks,
Gennady

