I am having big troubles get Multiselect to work with my Play 2.0 application.
I have tried different solutions that I found on google, but none works for 2.0.1.
Do you have any guides or tips for getting multi select to work ?
The html...
<select multiselect="multiselect" ... name="groupIds[]"> ... </select>
The Form
class UserAdminForm{
public Long[] groupIds;
}
and later in request handler...
Form<UserAdminForm> form = uform.bindFromRequest(); // Bam , [NumberFormatException: For input string: ""]
Are there any good way of dealing with POST array ?
