Tagged Questions

3
votes
3answers
186 views

In a unit test perspective: should the view specify presenter or the other way around in GWT MVP?

In tutorials on GWT Google uses to different approaches to do MVP, either the View specifies the Presenter or the Presenter specifies the View. The first one is used when using Activities and Places. ...
2
votes
1answer
152 views

Model View Presenter - how to implement complex Properties in an IView interace

I am finding it difficult understanding how best to implement 'IView' interface properties which are not simple types, and was wondering how others approach this in a Model View Presenter application. ...
1
vote
2answers
224 views

How many presenters should be used in Model View Presenter with Winforms with tabs?

I have a form with tabs related to a business entity - e.g. a Person has biographical data, address data, etc. Each tab handles input/editing of a category of Person data, and each tab can be saved ...
0
votes
2answers
143 views

How to set a Presenter in a composite widget in GWT

I have a GWT 2.4 app using MVP, clientFactory, activities, places, and uiBinder. I have a composite widget that I created as a standalone object with it's own ui.xml file. I reference that class and ...
0
votes
1answer
201 views

Multiple MVP presenters: How to communicate and share information?

I am designing a Winforms MDI application following MVP pattern, and I'm stuck on some problems related to communication between different part of my application. Here a simple picture of this ...
0
votes
1answer
427 views

GWT & MVP - Best practises for displaying/editing complex objects?

All the GWT / MVP examples I've learned about seem too simplistic to give a clear view what best practises are regarding displaying and handling slightly more complex model objects. For example, most ...
0
votes
1answer
75 views

ASP.NET Model-View-Presenter and List versus Details

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 ...
0
votes
1answer
190 views

What are some patterns for creating views and controllers in an MVC or MVP app?

I'm working on a MVC/MVP GUI for editing a document. The document has a tree structure, with some nodes representing text, others images. The app model also includes a command stack, with commands ...
0
votes
2answers
460 views

Can the Presenter of Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) shared and how?

Web Client Software Factory(WCSF) and Smart Client Software Factory(SCSF) both use MVP pattern. M-Model can be shared. V-View has to be different as both are on different platform(Desktop/Web). I ...
-1
votes
1answer
81 views

GWT with MVP: How to communicate between 2 views?

i use the MVP-Pattern in GWT. I have developed a GWT-TabPanel. Each Tab has his own Presenter and his own view. But now i want to use some Datas from ViewX in ViewY. Is there a simple way to realize ...