I am able to successfully accept one entry to my database. But, the rest of the entries are not from my dynamically added fields.
Here is my Create for Sibling:
[HttpPost]
[ValidateAntiForgeryToken]
public ActionResult Create(List<sibling> siblings)
{
if (ModelState.IsValid)
{
foreach(sibling x in siblings)
{
db.siblings.Add(x);
db.SaveChanges();
}
return RedirectToAction("Index");
}
return View(siblings);
Here is my Sibling model:
public partial class sibling
{
public int sibling_id { get; set; }
public int child_id { get; set; }
public Nullable<int> age { get; set; }
public string gender { get; set; }
public virtual child child { get; set; }
}
This is my Create.cshtml:
@model dummyApp.Schema.TestModels.sibling
@{
ViewBag.Title = "Create";
}
@section Scripts{
<script type="text/javascript">
$(document).ready(function () {
//var max_fields = 10; //maximum input boxes allowed
var wrapper = $(".input_fields_wrap"); //Fields wrapper
var add_button = $(".add_field_button"); //Add button ID
var x = 1; //initlal text box count
$(add_button).on("click", function (e) { //on add input button click
e.preventDefault();
//if (x < max_fields) { //max input box allowed
x++; //text box increment
$(wrapper).append('<div class="form-group">\
<p>Child ID: <input type="number" name="siblings[' + x + '].child_id"/></p> \
<p>Age: <input type="number" name="siblings[' + x + '].age"/></p> \
<p>Gender: <input type="text" name="siblings[' + x + '].gender"/></p> \
<a href="#" class="remove_field">Remove</a> \
</div>'); //add input box
//}
});
$(wrapper).on("click", ".remove_field", function (e) { //user click on remove text
e.preventDefault(); $(this).parent('div').remove(); x--;
})
});
</script>
}
<h2>Create</h2>
@using (Html.BeginForm())
{
@Html.AntiForgeryToken()
<div class="form-horizontal">
<h4>sibling</h4>
<div class="input_fields_wrap">
<button class="add_field_button btn btn-info">Add More Fields</button>
<br><br>
<div class="form-group">
<p>Child ID: <input type="text" name="siblings[0].child_id" /></p>
<p>Age: <input type="text" name="siblings[0].age" /></p>
<p>Gender: <input type="text" name="siblings[0].gender" /></p>
</div>
</div>
<div class="form-group">
<br>
<div class="col-md-offset-0 col-md-10">
<input type="submit" value="Create" class="btn btn-default" />
</div>
</div>
</div>
}
<div>
@Html.ActionLink("Back to List", "Index")