In Model-View-Presenter what is the correct pattern to do a page that:
a) contains a grid for browsing a list of items
b) an alternate mode for editing single items
maybe you are toggling between two asp:panels.

Do you just make the presenter smart enough to do two types of presentations? Make 2 presenters?

I'm new to this pattern and want to do it correctly. I understand how I would do this functionality on two pages. Just not sure what is the accepted practice when the browse and detail exist on the same page.

link|improve this question

71% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Make an edit view a user control and have a presenter for it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.