我需要在4列中显示selectManyCheckbox
列表,但问题是这个组件生成了一个表,所以我不知道如何定义列。
我正在使用PF 3.4,我无法升级到PF 4.x。你们对此有什么解决方案吗?
已编辑
现在我的代码中有这个
<h:form id="formAdminAccesosXPerfil">
<h:panelGrid title="Accesos" columns="5">
<c:forEach items="#{accesosXPerfilMB.listadoAcceso}" var="availableItem" varStatus="loop">
<h:panelGroup>
<p:selectBooleanCheckbox id="box_#{loop.index}" value="#{accesosXPerfilMB.checkBoxItems[availableItem]}" />
<h:outputLabel for="box_#{loop.index}" value="#{availableItem.nombre}" />
</h:panelGroup>
</c:forEach>
</h:panelGrid>
Managebean是@ViewScoped
我改变了建议的方法,因为它对我不起作用…
来自:
public void save() {
List<E> selectedItems = checkboxItems.entrySet().stream()
.filter(e -> e.getValue() == Boolean.TRUE)
.map(e -> e.getKey())
.collect(Collectors.toList());
// ...
}
到此:
public void guardarAccesos(){
try {
System.out.println("Size: "+getCheckBoxItems().entrySet().size());
for(BpAcceso acceso:getCheckBoxItems().keySet()){
System.out.println("Acceso Seleccionado: "+acceso.getNombre());
}
} catch (Exception e) {
e.printStackTrace();
}
}
但我在hashMap上没有得到任何选定的项目。只是为了确保我使用的是jdk1.6
在<h:panelGrid columns="X">
中的<c:forEach>
循环中生成一组selectBooleanCheckbox
组件,并将模型从List<E>
更改为Map<E, Boolean>
。
所以,不是
private List<E> selectedItems;
private List<E> availableItems;
<p:selectManyCheckbox value="#{bean.selectedItems}">
<f:selectItems value="#{bean.availableItems}" />
</p:selectBooleanCheckbox>
进行
private Map<E, Boolean> checkboxItems;
private List<E> availableItems;
@PostConstruct
public void init() {
checkboxItems = new HashMap<>();
}
<h:panelGrid columns="4">
<c:forEach items="#{bean.availableItems}" var="availableItem" varStatus="loop">
<h:panelGroup>
<p:selectBooleanCheckbox id="box_#{loop.index}" value="#{bean.checkboxItems[availableItem]}" />
<h:outputLabel for="box_#{loop.index}" value="#{availableItem}" />
</h:panelGroup>
</c:forEach>
</h:panelGrid>
public void save() {
List<E> selectedItems = checkboxItems.entrySet().stream()
.filter(e -> e.getValue() == Boolean.TRUE)
.map(e -> e.getKey())
.collect(Collectors.toList());
// ...
}
请注意,<ui:repeat>
不适用,原因如下JSF2 Facelets中的JSTL。。。有道理吗?