ASP.NET MVC Master Detail Entry Form

Emad picture Emad · Jan 10, 2011 · Viewed 24.4k times · Source

I’m trying to implement an order entry form using ASP.NET MVC but facing a lot of difficulties. All the samples that I found are related to viewing master detail forms, and none for adding or editing.

Suppose I have two tables: Order and OrderLines that are related to each others with one-to-many relationship. In the main view I had a “New” button when clicked it should show a new order view composed of the order fields, a grid that shows the order lines, and a “Save” button that when clicked will persist the whole order along with its lines into a database. The grid should have three buttons: “Add Line”, “Edit Line”, and “Delete Line”. When the “Add Line” is clicked a new view should be shown that allows the user to add the line to the order view grid lines –at this stage the database is not affected-. When the user clicks “Edit Line” a view will be shown that allows the user to edit the selected line and when done update the order grid lines.

The most difficult problems are:

How to pass the order and its lines collection between the order view and the order line views?

How to update the order view based on changes in the order line view?

And how to persist changes between views without the database being involved?

Is there a concrete example that shows how to implement this using MVC?

Views

Your help and feedback is appreciated.

Answer

Muhammad Adeel Zahid picture Muhammad Adeel Zahid · May 22, 2011

Pleas have a look at my blog post on creating master detail form in asp.net mvc. it also contains demo project that you can download