Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

6
votes
1answer
533 views

How do you use Presentation Model with Webforms?

I have started using Presentation Model w/ ASP.NET webforms and like the pattern quite a bit. What I am really having an issue with is where to instantiate some of my classes, mostly the presentation ...
5
votes
4answers
325 views

What are the main drawbacks of using Presentation Model in code behind?

I am trying to prepare myself for being challenged with the question: "Why cant we just implement the presentation model in the code behind?" In fact I have worked on a project where we used a ...
4
votes
1answer
658 views

MVP, WinForms - how to avoid bloated view, presenter and presentation model

When implementing MVP pattern in winforms I often find bloated view interfaces with too many properties, setters and getters. An easy example with be a view with 3 buttons and 7 textboxes, all having ...
3
votes
6answers
766 views

What are the differences between MVP, Presentation Model, MVVM and MVC?

I have a pretty good idea how each of these patterns work some of the minor differences between them, but are they really all that different from each other? It seems to me that the Presenter, ...
2
votes
3answers
397 views

Am I implementing the MVP / Presentation Model UI pattern correctly?

I'm re-working a Winforms application and would like to employ a variation of the Presentation Model pattern for the UI. Could someone tell me from the following explanations if I'm doing it ...
2
votes
1answer
695 views
2
votes
1answer
2k views

RIA Services: Inserting multiple presentation-model objects

I'm sharing data via RIA services using a presentation model on top of LINQ to SQL classes. On the Silverlight client, I created a couple of new entities (album and artist), associated them with each ...
2
votes
4answers
825 views

What are the biggest pain points with the ViewModel pattern?

Glenn Block and I have been working together on the ViewModel pattern. We’ve been trying to identify the biggest pain points associated with the pattern, with the goal of adding framework support to ...
1
vote
1answer
126 views

How to put entities and collection of entities inside a DTO in Silverlight - WCF RIA?

I would like to make a DTO which contains Entities. How should I do that? Is it possible? For example I have something like this in my server project: public class MyCustomDTO { [Key] ...
1
vote
2answers
481 views

Parsley dependency injection problem with Flex 4 using Presentation Model pattern

I have a View class EmployeeList as follows: <?xml version="1.0" encoding="utf-8"?> <s:NavigatorContent xmlns:fx="http://ns.adobe.com/mxml/2009" ...
1
vote
1answer
329 views

Clojure defrecord and private fields

I frequently implement my Java swing GUIs using Martin Fowler's Presentation Model pattern. Here is an example: import java.awt.BorderLayout; import java.awt.event.ActionListener; import ...
1
vote
2answers
225 views

Adding elements in Flex using the presentation model

I'm refactoring some Flex code written by another developer and I'm implementing a PresentationModel approach, as I like to separate out the ActionScript from the MXML. One of the problems I've found ...
1
vote
1answer
83 views

Loading presentation models directly from database

I'm working on a 2-tier application where WinForms client makes direct calls to the database. In one of the scenarios I need to display a list of Customer entities to a user. The problem is that ...
1
vote
1answer
625 views

MVP vs. Presentation Model, which one is better?

UPDATE MVP vs. Presentation Model, which one is better (for desktop application) - in terms of maintainability testability complexity flexibility separation of concern - changing one component ...
1
vote
4answers
274 views

What are the benefits of an XML data model over the DataSet model?

At my current job we have a CMS system that is .NET/SQL Server based. While customizing a couple of the modules for some internal use, I was a little surprised to see that instead of having APIs that ...
0
votes
0answers
61 views

How can I bind a bean's inherited property using jgoodies binding framework?

I'm a total newb to data binding in GUI applications and I've been trying jgoodies PresentationModel to achieve it using Swing for a while. And, as long as I used it to bind form components to a bean ...
0
votes
1answer
47 views

How to generically map a domain model to a presentation model?

I am trying to figure out how to generically map a domain model to a presentation model. For example, given the following simple objects and interfaces ... // Product public class Product : IProduct ...
0
votes
2answers
109 views

Flex data binding with View-Model pattern

I'm trying to move toward using the View/Model/View-Model or Presentation Model pattern in a Flex application since it definitely feels like the "correct" way to do things. I have a question about how ...
0
votes
1answer
184 views

Flex Cairngorm 3 Presentation Model Initializations

ok so I have a TitleWindow that I open up... and I have 6 states defined. I am using the Presentation model pattern for all of my views. I have discovered a frustrating nuance. When I tell my ...
0
votes
0answers
64 views

PresentationModel - Command feedback

i use Cairngorm 2.2 with PresentationModel-Pattern, as i understood it (PresentationModel holds the view logic and dispatches CairngormEvents to trigger Commands). What is a proper solution to get ...
0
votes
1answer
90 views

WCF RIA Capping out at 4096 Records

I would like to preface this with a "I am a Silverlight Noob"! So bare with me... Just wanted to know if anyone has run into this problem or knows why this is happening. I am doing a really simple ...
0
votes
0answers
104 views

Update multiple views associated with an item which is part of arraycollection?

I have an Adobe AIR application for desktop. One window contains a datagrid which holds a collection of to-do notes; user can edit a specific note with an "edit note" window which is spawned off by ...
0
votes
2answers
90 views

callback to model object

I am trying to figure out how to define a callback to my model object, via the Mate Frameworks LocalEventMap. <EventHandlers type="{WebServiceEvent.RT_GET}" debug="true"> ...
0
votes
1answer
439 views

JavaFX - question regarding binding button's disabled state

I'm trying to create a dummy application that maintains a list of tasks. For now, all I'm trying to do is add to the list. I enter a task name in a text box, click on the add task button, and expect ...
0
votes
2answers
258 views

How best to implement support for multiple devices in a web application

My client would like a business application to support 'every possible device'. The application in question is essentially a web application and 'every possible device', I believe encompasses mobile ...
0
votes
1answer
1k views

RIA services presentation model with 1-many or many-many relationships

I'm trying to get a presentation model (discussed here and here) working in RIA. All the examples I can find are simple, flat data entities with no 1-many or many-many relationships, which are what I ...
0
votes
1answer
179 views

Presentation Model

I want to set values for form labels from the controller. Can I send List<String> as parameter and have the form to set individual labels OR set the values for each and every labels from ...
0
votes
2answers
414 views

Handling client-side domain object state in a presentation model

I'm currently building the client side of a Flex/PHP project using the Presentation Model pattern. What I'm trying to achieve: I currently have a view displaying non-editable information about a ...