Hi,
I am designing the "Create" functionality for a pretty complex order object. In the process of creating an order, the user will have to select a receiver (via a person search), select items for the order (again, via an item lookup), and enter other details about the order.
The original idea for designing this is to have several 'tab' links that show/hide corresponding DIVs, to have search functionality in a partial view, reused in two divs, and to update the search results using ajax, so that an entire order can be created without multiple posts to server, only using some ajax calls to get data, to limit load on server.
This seems like the ASP.NET way of designing things, and I have a feeling that this create process should be separated into multiple views.
What do you think? Is this getting too complex for one View in the MVC pattern?
thanks!