I have a class Order with Order details Collection.
Adding and Editing of Order is done by bringing up a separate page, however adding and editing of Order-lines has to be done via grid.
Here is the work flow
Orders Collection Grid -> Click Edit-> Order Page Appear (URL: http://localhost/WebSite/Orders/Edit/1?mode=edit)
please refer to the attached png for furthere clarification....
My Order Page consists of Order header and Order-Line collection which is show using grid. Since the url parameter (Mode =edit), it messes up the order lines grid display, no controls appears in there respected columns.
Following are the ways I can think of resolving the issue
1> Instead of using in build select command use custom command to avoid (Mode=edit) parameter. Don’t know the pros and Cons?
2> Somehow empty the parameter list but How?
How does (Mode=edit) parameter modifies the look and feel of grid (orderlines grid in my case)?