Hi everybody,
how can I influence the rendering of a <f:selectItems />-Tag nested in a
<h:selectManyCheckbox />-Tag?
Because I need one table row for each "label-checkbox"-Pair, but the
html-rendering gives me just one row and adds the "label-checkbox"-Pairs in
that single row, which looks like this:
<table>
(Row 1) Label 1: [x] Label 2: [ ] Label 3: [x]
</table>
How can I change this to get a rendering like this:
<table>
(Row 1) Label 1: [x]
(Row 2) Label 2: [ ]
(Row 3) Label 3: [x]
</table>
Grettings,
Hendrik