index.xhtml
<h:selectManyMenu style="height:70px" value="#{bookBean.selectedBook}">
<f:selectItems value="#{bookBean.books}"/>
</h:selectManyMenu>
<h:commandButton action="#{bookBean.doClick}" value="Submit" />
BookBean.java
List<SelectItem> books = new ArrayList<SelectItem>();
public List<SelectItem> getBooks() {
return books;
}
So, the problem is after I choose multiple items in the ManyMenu list and click ...