<h:panelGrid columns="6">
<c:forEach items="${store.record.options}" var="option">
<h:outputText
value="${option.name}" />
<jd:booleanCheckBox
value="${option.selected}" />
</c:forEach>
</h:panelGrid>
<br />
<p>selected</p>
<ul>
<ui:repeat var="item"
items="#{store.record.selectedOptions}">
<li><h:outputText
value="#{item}"
/></li>
</ui:repeat>
</ul>
<h:panelGrid columns="6">
<c:forEach items="${store.record.options}" var="option">
<h:outputText value="${option.name}" />
<jd:booleanCheckBox value="${option.selected}" />