Hi
I am using MVC 4 with a Kendo Grid.
I have created a grid that is the "many" side of a one-to-many data structure. Basically , its the invoice rows part of an invoice. How do I now post back an Invoice with the rows (coming from the grid) to the action method of the controller?
[HttpPost]
public ActionResult Create(Invoice invoice)
Thanks
I am using MVC 4 with a Kendo Grid.
I have created a grid that is the "many" side of a one-to-many data structure. Basically , its the invoice rows part of an invoice. How do I now post back an Invoice with the rows (coming from the grid) to the action method of the controller?
public ActionResult Create(Invoice invoice)
Thanks