I was wondering if ASP MVC 3 has built-in support for editing multiple lines? I found some examples of ASP MVC 2 that float around, but nothing for v3. I am using Entify Framework 4 as source code. Suppose you have
public class Order { public List<OderLine> OrderLines { get; set; } } public class OrderLine { public int Id {get; set;} public bool Checked {get; set;} public int Amount {get; set;} public int Name {get; set;} }
Creating or editing an order should be presented in the form of a header with information about the order, and then a table with rows, where each row can be changed or deleted, and new lines can be filled.
source share