I am using Editortemplates to show a list of items associated with a form and i allow user to remove row if not wanted But when uiser submits the form after removing any row on POST action i am getting collection as null and if the user did'nt do any deletions of items the i get the complete collection at POST action with modified values . Here is the code i tried with Models Controller and View
Models
public class Student
{
public string StudName { get; set; }
public int StudId { get; set; }
public List<Assignment> Assignments { get; set; }
}
public class Assignment
{
public int Id{get;set;}
public string Name{get;set;}
public int Amount{get;set;}
public string Remarks{get;set;}
}
Controller Actions
public ActionResult Assign(int Id)
{
Student model = new Student { StudId = Id, StudName = "Name +" + Id };
List<Assignment> _assignments = new List<Assignment>();
for(int j=0;j<3;j++)
{
Assignment itm = new Assignment { Id = j, Name = "Assign " + j, Remarks = "Remarks " + j, Amount = j * 33 };
_assignments.Add(itm);
}
model.Assignments = _assignments;
return View(model);
}
[HttpPost]
public ActionResult Assign(int Id,Student model)
{
return Content("rxvd "+model.Assignments.Count);
//count is correct if not removing anything from Assign page
//If i remove any items from assign page then count is null
}
Assign View
@model OpenXMLMvc3.Controllers.Student
@{
ViewBag.Title = "Assign";
}
<h2>Assign</h2>
<script type="text/javascript">
$(function () {
//call from Editor template
$("a.deleteRow").live("click", function () {
$(this).parents("tr.editorRow:first").remove();
return false;
});
});
</script>
@using (Html.BeginForm())
{
@Html.ValidationSummary(true)
<div class="col-md-6">
<div class="editor-label">
@Html.LabelFor(model => model.StudName)
@Html.EditorFor(model => model.StudName)
@Html.ValidationMessageFor(model => model.StudName)
</div>
<div class="editor-label">
@Html.LabelFor(model => model.StudId)
@Html.EditorFor(model => model.StudId)
@Html.ValidationMessageFor(model => model.StudId)
</div>
</div>
<div class="col-md-6">
<table id="container">
@for (int j = 0; j < Model.Assignments.Count; j++)
{
//using editor template to list the assignments
@Html.EditorFor(model => Model.Assignments[j])
}
@*This will [using foreach instead of for ] result a NULL at form submission even without editing or removing any rows
@foreach (OpenXMLMvc3.Controllers.Assignment assign in Model.Assignments)
{
@Html.EditorFor(model => assign)
}*@
</table>
</div>
<p>
<input type="submit" value="Create" />
</p>
}
Editor template view
@model OpenXMLMvc3.Controllers.Assignment
<tr class="editorRow">
<td>
@Html.HiddenFor(model => Model.Id, new {@class="iHidden" })
sa
</td>
<td>
@Html.EditorFor(model => Model.Name)
</td>
<td>
@Html.EditorFor(model => Model.Amount)
</td>
<td>
@Html.EditorFor(model => Model.Remarks)
</td>
<td>
<a href="#" class="deleteRow">delete</a>
</td>
</tr>
So how can i allow user to remove item from Collection via EditorTemplates in MVC3