Primefaces p:selectManyCheckbox doesn't work with c:forEach and f:selectItem
问题 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