Tagged Questions
The passive-view tag has no wiki summary.
21
votes
11answers
2k views
What Alternatives Are There to Model-View-Controller?
While going through university and from following the development of SO, I've heard a lot about the Model-View-Controller architectural design pattern. I inadvertently used the MVC pattern even before ...
14
votes
6answers
2k views
Wiring code in JavaScript
I'm currently facing a conundrum: What is the right way to wire together 2 javascript objects?
Imagine an application like a text editor with several different files. I have some HTML page that ...
4
votes
2answers
2k views
C# WinForms Model-View-Presenter (Passive View) Help
I'm developing a WinForms application in C#. I have limited experience in GUI programming, and I am having to learn a great deal on the fly. That being said, here's what I am building.
See the ...
4
votes
3answers
1k views
Model View Presenter and Composite Views
I'm trying to follow the MVP (specifically Passive-View) pattern in a java swing ui application.
The basic design of the application reminds a wizard control. The screen is divided to two main parts:
...
3
votes
2answers
673 views
What is a good way to implement events in Passive View?
I am learning the Passive View pattern to keep my C# WinForms application
easier to test and maintain.
It has worked well so far but I wonder if there is a better way to implement
Events than the way ...
3
votes
3answers
370 views
Does Passive View breaks the Law of Demeter?
I'm trying to understand how to use Passive View correctly. It seems to me that every examples I look at on Passive View breaks the Law of Demeter :
//In the presenter code
myview.mytextfield.text = ...
2
votes
2answers
162 views
Implementation differences between MVP Passive View and Supervising Controller for collections
I've started to wrap my head around the whole MVP pattern and despite I'm doing fine with single objects it starts getting difficult when it comes to collections.
So let's say we're architecting a ...
2
votes
1answer
377 views
MVP: Presenter-Model communication
I have a design question about the communication between the model and the presenter in the MVP design pattern -- or more accurately its derived form the passive view.
Let's assume the following ...
2
votes
4answers
482 views
Swing, Passive View and Long running tasks
I'm trying to implement a Passive View based gui system in swing. Basically i want to keep my view implementation (the part that actually contains swing code) minimal, and do most of the work in my ...
2
votes
1answer
115 views
Q: Creating child views in the Passive View pattern
I am very interested in using the Passive View pattern to improve testability, but I am not sure how to call child dialogs.
Do you have the parent view create the child view and return an interface ...
2
votes
1answer
333 views
How do I attach a UserControl to a form in an MVP pattern?
I'm trying to create a kind of master/detail UI using an MVP pattern. I have the usual suspects:
interface IMainView{}
class MainView: Form, IMainView{}
interface IMainPresenter{}
class ...
2
votes
9answers
1k views
Why did Microsoft choose MVC for ASP.NET?
In addition to being a 30 year pattern, MVC was never meant for current applications. MVP was its successor and designed to handle event based apps coming out in the 90s. Passive View and ...
1
vote
1answer
33 views
Creating UI components dynamically in a Model-PassiveView-Controller
In a GUI application, I am using an MVC with a Passive View, as described here.
This pattern is yet another variation on model-view-controller and model-view-presenter. As with these the UI is ...
1
vote
2answers
67 views
How to expose properties of a user control in .NET for the MVP pattern
I am implementing a simple UserControl that is actually a fancy TextBox. One of its features is that you can set a formatting specification and this formatting get's applied to its contents ...
1
vote
1answer
414 views
Javascript MVP (Passive View) library
Working on a large GWT, makes me fall in love with MVP pattern that comes with GWT. Basically its a passive view, where a controller knows all the business logic, and the view is as dump as possible. ...
1
vote
2answers
490 views
MVP Passive View - Composite Views & Composite Presenters
I found M. Fowler article on Passive View pattern. I would like to apply it in my application. I use Swing for UI. I spent several hours searching tutorials or examples how to implement it but not ...
1
vote
3answers
429 views
MVP Passive View - keeping view data and model data separate
I have implemented an MVP triad using the passive view pattern - i.e. the view contains only simple getters and setters. However I am having trouble seperating the view data and model data. In ...
1
vote
1answer
1k views
How to Structure a C# WinForms Model-View-Presenter (Passive View) Program?
I am designing a GUI that has the following basic idea (similarly modeled after Visual Studio's basic look-and-feel):
File navigation
Control selector (for selecting what to display in the Editor ...
1
vote
2answers
137 views
Passive view in JavaScript
I'm thinking about an implementation of MVP - Passive View pattern in JavaScript. In most case the view will be simple dom elements where the presenter attaching event listeners. But when it comes to ...
1
vote
1answer
102 views
passive view and display logic
In MVC and MVP and similar patterns there's often the approach of the "passive view" which is as stupid (contains as few logic) as possible. This should facilitate unit testing and create a clearer ...
1
vote
4answers
230 views
My presenter needs to prompt the user for more information. How do I wire it up?
I'm working with the Passive View pattern. The user clicks a new account button. The view delegates responsibility to the presenter using parameterless method calls.
The problem is there are multiple ...
1
vote
3answers
599 views
How should I expose hierarchical data from a TreeView control to a MVP presenter?
I have some hierarchical data in a Winforms TreeView control and I need to expose it as a property so my presenter can synchronize changes to it. Just to be clear, I'm using the Passive View pattern. ...
0
votes
1answer
94 views
Using MVP, how to create a view from another view, linked with the same model object
Background
We use the Model-View-Presenter design pattern along with the abstract factory pattern and the "signal/slot" pattern in our application, to fullfill 2 main requirements
Enhance ...
0
votes
2answers
178 views
Model-View-Presenter and Transferring Large Objects
I have traditionally implemented a Model-View-Presenter [Passive View] like so:
interface IView
{
string Title {set;}
}
class frmTextBox : Form, IView
{
...
public string Title
{
set { ...