Tagged Questions

1
vote
2answers
485 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
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 ...
0
votes
2answers
110 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
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
2answers
415 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 ...