The presenter tag has no wiki summary.
0
votes
1answer
51 views
Using ActionView::TestCase::Behavior and the view method in a presenter spec
Using the Railscast example, I have written a spec for my presenter which includes ActionView::TestCase::Behavior and passes in the view method to the presenter.
spec/spec_helper.rb:
...
...
0
votes
3answers
74 views
GWT: MVP Presenter Interface
I try to understand how the gwt example about activities and places works (https://developers.google.com/web-toolkit/doc/latest/DevGuideMvpActivitiesAndPlaces). I am wondering why they define an ...
0
votes
2answers
155 views
GWTP : events and nested presenters
I have some problems with events in GWTP.
I have a MainPresenter which extends TabContainerPresenter.
This presenter is linked to a MainView which contains some ui components + some ...
0
votes
1answer
13 views
What kind of trouble if using _global in swf for presenter
I have to transform a lot of swf to using them in Presenter.
They are old (AS1) and was developed with a lot of "_root" everywhere ("_root" don't work in Presener).
So my idea was to set a global ...
2
votes
0answers
110 views
Model View Presenter - Passive View - Who loads the Model?
I'm curious in using the MVP Pattern to improve testability. I have experience with MVC but MVP seems different.
I'm having an application that operates on a 'project' file which is in fact an ...
0
votes
2answers
173 views
GWTP - Clear PopoupSlot
I'm new in programming gwtp and have a problem using the popupslot:
I have several nested presenters. One presenter reveals a popup dialog. Every time, when this presenter is revealed, the popup ...
0
votes
0answers
103 views
Java JSON API - Presenter Pattern
I'm working on a JSON API utilizing Java JPA and Jersey. I'd like to abstract my JPA entities from my Jersey resources in order to have more control over the JSON being sent to clients. In ...
0
votes
0answers
88 views
model view presenter pattern in wpf using mef
Hi has anyone devised a simple sample application in wpf that uses model view presenter pattern with mef.
please share the code, will be really helpful.
0
votes
0answers
124 views
Trigger if the ItemsPresenter is the first item
I create a new template. I wish that the ItemsPresenter will not be displayed if it is the first element. I would solve this with a trigger. But i don't know what I specify as the condition?
...
0
votes
1answer
165 views
Apotomo alternative
The information on the home page of the project I'm working has been piling up that now we are looking for something to create a dashboard-like interface.
That's how I found Apotomo, but I'm ...
2
votes
1answer
457 views
GWT Model View Presenter , Reusing Presenters ? Or Presenter - Presenter Communication
A rookie here.
I just started with Ray Ryan's Google IO talk and following some articles on Google Developers site. I have not used any of the GWT add-ons like GWTP or MVP4G or GIN or any other ...
0
votes
0answers
96 views
MVP implementation for a complex timeline UI
I am designing a timeline system.
The timeline (TL) has tracks (ObjectTrack) which have items (Item).
Thinking about the architecture, I designed the following diagram for adding a track to the ...
0
votes
2answers
161 views
Dynamically Adding Different Views Using MVP
First off let me say this is my first attempt into trying MVP. I am going for the Passive View approach as I want to completely decouple the Views from the Model.
I have read up on MVP by reading ...
0
votes
1answer
591 views
Rails - Helper Singleton and Rails Route Helpers in a Presenter
I can't seem to figure out why I'm getting a 500 Error when trying to utilize a route helper in my Presenter class
Have a Presenter class under
/apps/presenters/base_presenter.rb
...
2
votes
2answers
2k views
How to use Capybara Rspec Matchers to test a presenter?
I'm trying to test a presenter method using a Capybara RSpec matcher.
Lets say I have a method that renders a button. This would be the test I would write if I wasn't using capybara rspec matchers:
...
0
votes
2answers
602 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 ...
1
vote
1answer
404 views
How does Rails populate the “model_type” field for polymorphic associations?
I have an Activity model. It belongs_to :parent, :polymorphic => true.
Does Rails use parent.class.name, parent.model_name or something else to populate the parent_type field?
I want a Presenter ...
-1
votes
1answer
288 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 ...
5
votes
1answer
3k views
Using rails presenters - memoizable getting deprecated in 3.1 - use ||= instead?
Issue: To avoid creating multiple objects or multiple queries when possible.
I am using Presenters with rails as a Best Practice.
I am following advice that says that it would be good to use "extend ...
1
vote
2answers
334 views
uninitialized constant for HomePresenter
I'm trying to implement a HomePresenter to be used inside the home action of my Pages controller:
# app/controllers/pages_controller.rb
class PagesController < ApplicationController
def home
...
2
votes
1answer
445 views
Using a presenter with Inherited Resources
I use the excellent Inherited Resources gem quite a bit in my Rails apps, but whenever I want to use a presenter I fall back to writing controllers by hand.
Is there a good, clean solution for ...
35
votes
2answers
6k views
Rails Patterns - Decorator vs Presenter
All sorts of talk lately in the Rails community about decorators, presenters.
What is the essential difference between the two? If there are, what are the cues that tell me to use one or the ...
2
votes
1answer
523 views
How to pass argument to delegate method in Rails
I would like to have a Dashboard to display summary of multiple models, and I implemented it using Presenter without its own data. I use an ActiveModel class (without data table):
class Dashboard
...
3
votes
1answer
238 views
Can Ninject inject a class and make it reference the target class as a back reference?
I want to inject a presenter into my webform class. While doing so I would like the injected presenter to contain a reference to the view it is being injected into. Inject a class with a reference to ...
2
votes
2answers
515 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.
...
0
votes
1answer
279 views
Name conflict between controller name and presenter namespace
I am using the presenter pattern and am seemingly running into inconsistent class naming conflicts. I have a pages controller with a homepage method and I'd like to have that method use the ...
0
votes
2answers
106 views
Ruby: define a class that returns something other than itself when an instance is called without any methods
I'm wondering if there's a way to return an object instead of a string when calling an object without any methods.
For instance:
class Foo
def initialize
@bar = Bar.new
end
end
Is there ...
2
votes
2answers
1k views
Benefits of Presenter pattern for controller testing
I'm participating in a project, which extersively uses Presenter pattern.
I don't see a benefits of it, because all the methods of Presenter class are trivial, like this:
class ...
3
votes
3answers
342 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.
...
1
vote
1answer
429 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 ...
1
vote
1answer
773 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 ...
2
votes
2answers
563 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
3answers
115 views
WPF ViewModel not active presenter
There is a ViewModel that consists of some related object (nodes and lines( ,
How it can be possible to display (synchronize) these VM in View and keep object connections.
I use some DataTemplate to ...
0
votes
1answer
1k views
Make the Stage transparent with Actionscript 2?
I have been given a build structure that is essentially a shell swf, which I have full access to, and it loads in swf content from Articulate, Presenter, Quizmaker and Engage.
Unfortunately all of ...
4
votes
1answer
80 views
C# Where to put view specific information?
I'm trying to reduce the code duplication that exists throughout my asp.net web forms. This is what an example object loaded from the database looks like.
Apartment
int id
decimal rent
bool ...
0
votes
1answer
112 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 ...
1
vote
2answers
2k views
Derived Interface with derived interface member
I have 2 base interfaces, IViewBase (which all views will implement) and IPresenterBase (which all presenters will implement):
public interface IViewBase { }
public interface IPresenterBase
{
...
0
votes
1answer
229 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
541 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 ...

