问题
How to use these tags together as now they don't work:
<p:scrollPanel mode="native" style="height: 200px;">
<p:selectManyCheckbox id="groups" value="#{myBean.selectedGroups}" layout="custom" >
<c:forEach items="#{myBean.myGroups}" var="group" >
<f:selectItem itemValue="#{group.id}" itemLabel="#{group.name}"/>
</c:forEach>
</p:selectManyCheckbox>
</p:scrollPanel>
I want to do this to put each <f:selectItem/>
inside of the <li></li>
later.
Additional details: xmlns:c="http://java.sun.com/jsp/jstl/core"
, PrimeFaces version 3.4.1.
来源:https://stackoverflow.com/questions/31917758/primefaces-pselectmanycheckbox-doesnt-work-with-cforeach-and-fselectitem