Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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 ?

share|improve this question
1  
what is "<select multiselect='multiselect'...>"?? Don't you mean "<select multiple...>"? – virtualeyes May 26 '12 at 8:29

2 Answers

You error is:

NumberFormatException: For input string: ""

This means that you are receiving an empty String, which can't be turned into a number. Better mark the field in the Form as optional if it's possible to not get a value in that field.

share|improve this answer

You can create a template like the following :

@(field: play.api.data.Field, options: Seq[(String,String)], args: (Symbol,Any)*) (implicit handler: FieldConstructor, lang: play.api.i18n.Lang)

@values = @{ field.indexes.map { v => field("[" + v + "]").value } }

@input(field, args:_*) { (id, name, value, htmlArgs) =>
<select id="@id" name="@name" @toHtmlArgs(htmlArgs) multiple="multiple">
    @options.map { v =>
<option value="@v._1" @{if(values.contains(Some(v._1))) "selected" else ""}>@v._2</option>
    }
 </select>
}

You can find this example at play-framework discussion group

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.