vote up 0 vote down star

How do I submit the ListBox selections to the ModelBinder?

<%=Html.Hidden("response.Index",index)%>
<%=Html.ListBox("response[index].ChoiceID",
                new MultiSelectList(gc.choice,"ChoiceID","ChoiceText") )%>

'gc.choice' is a List

I can get the fisrt selected value to the model, but not the second selection presumably because I cannot change the index.

flag

1 Answer

vote up 0 vote down

I built a presentation model SamplePresentationModel class that has a MultiSelect member userList. Then suppose IEnumerable<User> allUser is the list of options. I use

  View(new SamplePresentationModel(){ userList = new MultiSelectList(allUsers, 
    "UserId", 
    "UserName", 
    allUsers.Select(user => user.UserID))});

to pass the MultiSelection to the view.

Then in the view I can construct the listbox

   <label for="userList">users:</label>
    <%= Html.ListBox("usersList", Model.userList)%>

In the POST action I can capture the selections:

IEnumerable<int> selectedUserIDs = Request["usersList"].Split(new Char[] { ',' }).Select(idStr => int.Parse(idStr));

Don't know if this helps!

link|flag

Your Answer

Get an OpenID
or

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