Reputation: 1
I have just started to use jsf rich faces and my client wants a drop down list with multiple items with checkboxes. . My code look like this but i am not getting desired result:
<rich:select id="primaryFilterPayer1" value=""
styleClass="cpd-combo cpd-master-filter-width"
enableManualInput="true" defaultLabel="Select Payer" listWidth="300px"
maxListHeight="400px">
<h:selectManyCheckbox id="multipleselect"
title="Select one or more payer" layout="pageDirection">
<f:selectItems value="#{payerwiseDuplicate.allPayer}" var="item"
itemValue="#{item.key}"
itemLabel="#{item.value}"/>
</h:selectManyCheckbox>
</rich:select>
Upvotes: 0
Views: 67