在jsf或primefaces的Listbox中有一个复选框
嗨,我目前所做的是,我已经做了一个列表框,其中即时通讯选择用户与checkboxes
它都通过HTML和JavaScript和CSS现在要求是我需要与jsf or primefaces
相同的功能,请告诉我如何执行此操作或者是他们在jsf or prime faces
已经实现的任何功能
就像我想要的那样,在下拉列表框中有多个复选框
<h:selectManyListbox value="#{user.favFood1}">
<h:selectManyCheckbox id="subscriptions" layout="pageDirection">
<f:selectItem id="item1" itemLabel="News" itemValue="1" />
<f:selectItem id="item2" itemLabel="Sports" itemValue="2" />
<f:selectItem id="item3" itemLabel="Music" itemValue="3" />
<f:selectItem id="item4" itemLabel="Java" itemValue="4" />
<f:selectItem id="item5" itemLabel="Web" itemValue="5" />
</h:selectManyCheckbox>
</h:selectManyListbox>
你可以像这样使用
<p:selectCheckboxMenu value="#{user.favFood1}">
<f:selectItem id="item1" itemLabel="News" itemValue="1" />
<f:selectItem id="item2" itemLabel="Sports" itemValue="2" />
<f:selectItem id="item3" itemLabel="Music" itemValue="3" />
<f:selectItem id="item4" itemLabel="Java" itemValue="4" />
<f:selectItem id="item5" itemLabel="Web" itemValue="5" />
</p:selectCheckboxMenu>
它会在下拉菜单中创建一个复选框。
链接地址: http://www.djcxy.com/p/68545.html上一篇: Having a checkboxes inside Listbox of jsf or primefaces
下一篇: Get widgetVar with JavaScript or check/uncheck all other PrimeFaces checkboxes