Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
474 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 ...
3
votes
1answer
699 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 ...
3
votes
3answers
178 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. ...
3
votes
1answer
73 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 ...
2
votes
1answer
90 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 ...
2
votes
1answer
103 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 ...
1
vote
1answer
55 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
vote
1answer
127 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 ...
1
vote
1answer
137 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
209 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 ...
1
vote
2answers
669 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
0answers
16 views

Interfacing with Articulate Presenter

I have a quiz, which I presume was created with Articulate Presenter 6.0.1. My question is that is there any way to catch events on client side, performed within the quiz? I'm specifically interested ...
0
votes
2answers
126 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
2answers
48 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 ...
0
votes
0answers
10 views

How should I approach a functionality to create a Comment and User at the same time?

With Comment and User I mean the relationship of belongs_to and has_many. Something like this: Suppose we have 2 resources, Comment and User. Users can create Comments. When a non-User go to the ...
0
votes
1answer
76 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
60 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 ...
0
votes
1answer
443 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 ...
0
votes
1answer
193 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
401 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
3answers
69 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
429 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 ...
0
votes
1answer
74 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
188 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
457 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
67 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 ...