using primefaces, how can implement multiple selection of items in dropdown list without using several dropdown menus...
is there tag in primefaces??
i think there's no primefaces component achieve can use plain jsf.
try <h:selectmanymenu>
or <h:selectmanylistbox>
.
here example menu:
<h:selectmanymenu id="newsletters" value="#{bean.selecteditems}"> <f:selectitems value="#{bean.availableitems}"/> </h:selectmanymenu>
you'll find more information in java ee tutorial.
Comments
Post a Comment