After searching a lot on this problem, i'm askin help to the community :
I'm doing somthing like that in a View (The problem is the same if i'm using @Html.Action or a PartialView
@for(int i= 0; i< Model.Contacts.Count(); i++)
{
@Html.EditorFor(m => m.Contacts[i] , "AccreditationContact" )
}
I have a classic EditorTemplate or PartialView like that
@model FrontOffice.Models.AccreditationStepSevenModel
<div>
@Html.LabelFor(m => m.Nom)
@Html.TextBoxFor(m => m.Nom)
@Html.ValidationMessageFor(m => m.Nom)
</div>
[There is a lots of other fields here]
The html generated for the field "Nom" looks like something like that :
<input id="Contacts_0__Nom" name="Contacts[0].Nom" type="text" value="Doe" >
<input id="Contacts_1__Nom" name="Contacts[1].Nom" type="text" value="Doe1" >
<input id="Contacts_2__Nom" name="Contacts[2].Nom" type="text" value="Doe2" >
No problem here when i submit my form, all fields are correctly binded into an Array by the native ModelBinder in my controller
Now i would like to dynamically in javascript generate another AccreditationStepSevenModel, i used a $load with Jquery. The problem is that the html generated does not increment the names then i have multiple fields with the same names and my ModelBinder does not work anymore...
i thought about renaming the names in javascript, and this would work, but is there a better solution ?
Thanks for your help !
The default ModelBinder will only work, if the index is in unbroken sequence of integers, starting at 0 and increasing by 1 for each element. To support Non-Sequential Indices, you have to spicify an indexer e.g.
See this blog post to get the idea: Editing a variable length list, ASP.NET MVC 2-style