Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Model binding a list of checkboxes problem

In my EditorTemplates, i Have two Views. One for my Category (called _Category)

@model com.example.Models._Category
@Html.CheckBox(Model.Name, Model.Selected)
@Html.LabelFor(c => c.Name, Model.Name)
<br />

and one for the List of Categories (called _Categories)

@model List<com.example.Models._Category>
@for (int i = 0; i < Model.Count; i++)
{
    @Html.EditorFor(c => Model[i]);
}

In the view that shows these categories, i have a list of Categories which is being used like so:

@Html.EditorFor(m => m.Categories, "_Categories")

When I view the page, there are multiple checboxes with names next to them which is good. The name of the checkboxes is not so good however as they turn out to look like this:

....name="Categories.[1].Batman"....">

There is an extra dot in the name which needs to go away. Any ideas on how to fix this?

Thanks in advance

like image 761
Collin O'Connor Avatar asked Aug 18 '11 21:08

Collin O'Connor


2 Answers

Please refer to this and this for collections databinding, those are two ultimate resources for that.

like image 121
mare Avatar answered Nov 08 '22 12:11

mare


I saw this post that I believe talks about the same issue that you are having. Might be helpful.

like image 31
itsmatt Avatar answered Nov 08 '22 10:11

itsmatt