Task: There is a panel, with selectMany checkboxes, having 5 columns. The values of selectboxes are ordered by ascending, but they appear from left to right in columns instead of top to bottom.
Using: Primefaces Code:
<p:selectManyCheckbox id="chkbx" value=.. layout="grid" columns="5">
<p:selectItems value=.. itemValue=".." itemLabel=".."/>
</p:selectManyCheckbox>
Current screen:
[] a [] b [] c
[] d [] e [] f
[] g [] h [] i
Expected:
[] a [] d [] g
[] b [] e [] h
[] c [] f [] i

