Model View Presenter (MVP) is a derivative of the model-view-controller software pattern, used mostly for building user interfaces.

learn more… | top users | synonyms (1)

0
votes
2answers
42 views

Using Mockito for unit-testing a presenter with a passive view

The problem A presenter that "manages" a passive view subscribes to events that occur in that view (e.g. button click), and does not directly expose the methods that handle those events as public ...
1
vote
1answer
18 views

MVP after event Binded property null

I am working with WPF MVP. I have a UserControl with DataBinding. After the user interaction (click event) the property in the presenter is null, but at the next modify on the text when the binding is ...
0
votes
4answers
66 views

When NOT to use MVP/MVC?

Okay this is a question that I could find but very few proper arguments for/against. I appreciate the value these patterns provide for testability and separation of concerns. Especially in cases ...
0
votes
0answers
6 views

MVP + VSS VS2005

In search of a better and correct answer I am posting my question here. If anyone can clear my doubt it will be helpful. This doubt is related to VSS and Development environment. For my new project ...
1
vote
3answers
36 views

How does MVC/MVP work in a Swing app?

I have been asked to revamp an existing JDialog that is a child container of an in-house Swing app. I will be re-writing the dialog from scratch and have been asked to lead the charge towards making ...
0
votes
1answer
70 views

Application(solution) structure for Model View Presenter(+ Passive View) in WinForms?

Once upon a time I wrote a code that, with time, started to smell. It was not coded in a way that it could be easily tested. There were tight coupling on each of the children windows with ...
0
votes
0answers
41 views

Javascript Architectural Model

Are there any obvious flaws to this OO architectural model which I intend to implement using javascript? It is similar to the MVP model but instead the role of the model is broken down into three ...
0
votes
0answers
10 views

asp.net webforms + MVP

I'm new with MVP in webforms. I have a page with 3 web user controls inside. Web User Control 1, will display Web User Control 2. and Web User Control 2, will display Web User Control 3. Each Web ...
3
votes
2answers
59 views

Showing a Form from Presenter in C#

I have more of an architectural question. I'm trying to implement MVP in C# as follows: IView creates Presenter IPresenter has a property IView which holds View, that is bound to it View CAN be ...
0
votes
0answers
14 views

Where to put logic for control enable states in MVP

I have a java application using MVP. The presenter is regsistered to a state machine class, so he's notified when a state changes. The view has buttons which must be enabled or disabled based on the ...
0
votes
1answer
24 views

Smarty template VS Model view controller

I read that Model-View-Controller has good features which allows programer to modify the scirpt without touching other files http://en.wikipedia.org/wiki/Model-View-Controller I want to know which one ...
0
votes
0answers
75 views

MVP and ASCX user controls

In my ASP.Net web application I have two ASPX pages each using a common ASCX user control. I am trying to implement this using the MVP pattern and have run into a difficult design decision. I have ...
1
vote
0answers
60 views

MVC\MVP frameworks for WinForms

Are there any MVC\MVP alived frameworks for WinForms? As I understand MVC# is dead. http://www.mvcsharp.org/
0
votes
3answers
30 views

Javascript “this” issue in Model View Presenter design

The issue is in the model, when recalled by the presenter it does not work like I assumed, in fact it works as if the this keyword refers to an [object HTMLTextAreaElement], not to a Model object. ...
0
votes
1answer
45 views

Uncaught umbrella exception escaped

Please help me resolve this Umbrella exception http://pastebin.com/DACPRhbP NewUserPresenter file : http://pastebin.com/FZyAffu8 NewUserViewImpl file: http://pastebin.com/i6fYwnLH User Entity in ...
0
votes
1answer
58 views

large MVP application memory leak when opening / closing form

I'm working at a project (constructed on the MVP architecture) that has memory leaks. The application is using 1GB of memory with list of records displaying in a Grid. I profiled it (took the 2 ...
-3
votes
1answer
32 views

How do I pronounce “MV*”?

I have recently seen the word, "MV*" which is the collective term of MVC, MVP and so on. How do I pronounce this word?
1
vote
2answers
92 views

Concepts on MVP with DDD

I recently started doing web dev in C# and I am confused about MVP pattern with the concept of Domain Driven Design. I was told by one of the seniors that the application is separated into 5 ...
0
votes
1answer
83 views

GXT + GWT MVP in a single application?

I am working on this project which uses 100% gxt code. Now we have another small project which is written using GWT MVP pattern and we are tasked to integrate the 2 projects into one.So pretty much we ...
0
votes
1answer
110 views

Managing errors and CSS in View through Presenter

The MVP model that I have implemented in my project is Passive MVP. The presenter has a reference to the view. Also, presenter has a Display interface which the view has to abide by. My current ...
-1
votes
1answer
33 views

Login with GXT3 MPV Request Factory

I have a project with sencha gxt 3, and I do not know how to do authentication (Login) Please you, if you can help me with some examples. thank you.
0
votes
2answers
51 views

Clarification needed what the presenter in the MVP pattern should know

I'm trying to refactor a WindowsForm to the MVP Pattern. The app is a tile editor. The form has a custom control where i display the tilemap (TileDisplay). After loading a map from a file i call a ...
0
votes
0answers
56 views

What's the difference between Model-View-Presenter and Model-View-Adapter?

I'm trying to understand whether there's a difference between the Model-View-Presenter and Model-View-Adapter patterns, and--if so--what that difference is. I haven't found any online resources that ...
1
vote
0answers
71 views

Refreshing a datagrid in a new window c# WPF MVP pattern

Hi everyone I use Visual Studio 2010 with WPF and C# with the model view presenter pattern. I have some issues though. I have a search function which filters my observable collection based on some ...
1
vote
1answer
33 views

What are the well known methods for moving data around the layers in MVP

I'm working on an application where the MVP pattern is employed. It's still early in development, so I still have the luxury of reflecting back critically on the different design choices. The Model ...
0
votes
0answers
23 views

MVP on Windows forms [duplicate]

Hello everyone im new here and im doing a research on how to use MVP on windows forms, right now im having some trouble finding some source of good information about MVP on windows forms, all i can ...
0
votes
1answer
69 views

How does one define a set of common interactions with a data model in the MVP pattern?

I've inherited a WinForms application which has significant issues surrounding separation of concerns between business logic and UI control. The two are so completely intertwined that UI ...
1
vote
2answers
61 views

MVP: Presenter Singleton

I use history management in my ajax-web-application(GWT). When the user presses the backward or forward button, another view will be displayed. Every view will be only created once. My quesion is how ...
2
votes
2answers
86 views

Wiring MVP with Spring IOC without circular reference?

In my MVP applications I use code such as the following to wire my Presenter and View: View view = new View(); Presenter presenter = new Presenter(view); view.setPresenter(presenter); The View ...
0
votes
0answers
13 views

MVP - Presenter in constructor

Should presenter be initialized in constructor or is better solution to pass it as parameter in constructor using DI.
0
votes
1answer
85 views

Flex - How project using MVC / MVP pattern

I would like to know what is best practise for structuring FLEX application using MVC / MVP pattern. I can't find any good example on google.
0
votes
1answer
39 views

chess in GWT+MVP and trying to store states in the local storage

I have done this till now public void addStorage() { stockStore = Storage.getLocalStorageIfSupported(); if (stockStore != null) { stockStore.setItem(("Index" + index), ("state" + ...
2
votes
0answers
29 views

What are the patterns in communication between View and Presenter in MVP?

Reading about MVP pattern I found there are two communication patterns between View and Presenter: View doesn't know Presenter but provides UI controls implementing HasClickHandler interface where ...
3
votes
3answers
131 views

GWT - Separating role of presenter from activity

What advantages could be gained from divesting the role of presenter from an activity? What are the roles/concerns that could be separated in order to dissect an activity from being a presenter? Why ...
1
vote
2answers
136 views

Using SpecFlow for project architecture (MVP-VM)

I am trying SpecFlow for the first time, and I would like to know whether I am perhaps overthinking the whole concept or worse, completely misusing it for its intended purpose? I thought to take an ...
1
vote
1answer
162 views

Model-View-Presenter with Google Web Toolkit (GWT)

I am thinking about developing a new application using web toolkit. I decided that the best option is going to be to use the Model-View-Presenter Design Pattern. After doing plenty of research, I ...
1
vote
2answers
173 views

How to handle unit of work with dependency injection and repositories

I've inherited some code that has a UnitOfWorkFactory which creates a unit of work inside each repository method. The problem is that a single repository method is rarely the full unit of work so if ...
0
votes
2answers
148 views

How do I properly implement a model-view-presenter with passive in C# Winforms?

I'm studying design patterns right now, I'm fairly new to this model-view-presenter, although I have already experience in asp.net mvc I'm trying to do an implementation of mvp in winforms. The ...
0
votes
0answers
26 views

How to implement table-relationships in DTO's

What is the proper way to structure DTO's for my tables? Three of my tables are Documents which contains Pages and Fontstyles. I am creating an EditDocument view in which I will edit these (and more) ...
0
votes
1answer
33 views

Where are file operations handled in MVP?

This may be a silly question, but with my current searches I have found mostly information about the presentation of data and the interplay between the Presenter and the View, but very little about ...
0
votes
1answer
49 views

How to simulate click event in View/Display for test purpose?

The section on GWT testing describes how to verify output of Presenter in Display object, but does not explain how to do the other way around. In other words, I want to check whether Presenter will ...
2
votes
2answers
112 views

Isn't Cocoa MVC really MVP?

Once again, an MVC-related question. A few days ago I started reading the Cocoa Fundamentals Guide from Apple in which Apple explains their implementation of MVC. In the chapter MVC as a Compound ...
0
votes
1answer
35 views

Does model check data or presenter do it?

I have question about MVP. If presenter sends request to model for data. Does model check these data or does presenter have to do it? For example: are data ok etc. Thank you for answers.
0
votes
0answers
41 views

How to share plugins with GWT-MVP between projects

I created a wrapper around DataGrid that customizes it for a line of products and adds search/filtering, custom pagination, asynchronous data provider etc. (all based on GWT MVP). While it is a ...
0
votes
1answer
37 views

How to signal presenters about changes deep in a complex model?

We're using MVP, but the problem itself isn't necessarily MVP-specific. Basically, presenters need to know if the model changes so they can process and reflect the changes to their view. This would ...
1
vote
4answers
273 views

Facebook replaces #!v URLs by “_escaped_fragment_” when sharing

I am trying to share this URL from my app on Facebook: http://www.example.com/#!v;id=NH1NlYov3bKJ However, it is automatically replaced by: ...
1
vote
4answers
166 views

Communication between winforms in mvp pattern

I'm dealing with a big problem for developing my app. It's a Winforms base application on C# implementing the Model-View-Presenter pattern, but I am new to this method. I've searched everywhere and ...
0
votes
1answer
82 views

MVP multiples views combine to form an overall view

The GWT documentation comes with a tutorial on how to utilize the MVP pattern here. In this example, there are two views, and each replace the other as per the user action. In these rather simple ...
2
votes
1answer
180 views

What's a good MV* pattern for Qt application?

By Qt application, I mean a C++ application with Qt GUI. I used MVP for Android project and Winform, MVC for ASP.NET MVC of course, and MVVM for WPF/Silverlight/Javascript. But now, as I need to start ...
0
votes
0answers
59 views

Implementing the MVP pattern correctly

I am trying to implement MVP in a Winforms app. I am sort of following this Article with slight modifications The thing where my implementation is differemt is that the presneter has two ...

1 2 3 4 5 18