jsf 2 - Let JSF set selected items of selectManyListbox value as List or Collection instead of array -
is there way selected items selectmanylistbox list orcollection? after submit items selected come arrays.
set collectiontype
attribute fqn of desired collection implementation.
e.g. if want jsf set selected items in instance of java.util.arraylist
:
<h:selectmanylistbox ... collectiontype="java.util.arraylist">
Comments
Post a Comment