Tagged Questions

PureMVC is a lightweight framework for creating applications based upon the classic Model, View and Controller concept.

learn more… | top users | synonyms

18
votes
5answers
8k views

What's your recommendation for architecting GWT applications? MVC, MVP or custom messaging solution?

I just started a new GWT project for a client and I'm interested in hearing people's experience with various GWT MVC architectures. On a recent project, I used both GXT MVC, as well as a custom ...
7
votes
3answers
1k views

Flex best practices?

I have the feeling that is easy to find samples, tutorials and simple examples on Flex. It seems harder to find tips and good practices based on real-life projects. Any tips on how to : How to write ...
5
votes
6answers
827 views

How does the portability of PureMVC benefit the application developer?

One of the stated goals of the PureMVC framework is to avoid platform dependencies in order to be portable. Considering that because of language and API differences application code will always be ...
3
votes
7answers
2k views

Is there a better alternative to PureMVC for Flash projects?

I used PureMVC in a prior Flash (not Flex) project. After adjusting to its requirements, it worked well, but I'm left feeling that it was too over-engineered and cumbersome. I noticed that Mate had ...
3
votes
6answers
4k views

in MVC/MVP/MVPC where do you put your business logic?

in the MVC/MVP/MVPC design pattern where do you put your business logic? No, I do not mean the ASP.NET MVC Framework (aka "Tag Soup"). Some people say you should put it in the "Controller" in ...
2
votes
1answer
65 views

Concatenate javascript files in eclipse? (PureMVC Mootools)

I just started to work with the pureMVC tutorials with javascript. In the Objs-Platform, there was some nice ObjsComp.jar, which concatenate all javascript files in my a specific folder into one file. ...
2
votes
1answer
114 views

android, andengine, pureMVC framework integration

I want to use pureMVC framework for my android application. I also want to use Android andengine in this application. How can I integrate them? Is there any way to do that? If yes, can you send me ...
2
votes
1answer
46 views

Is it possible to write a getter that takes a parameter?

I've found two very strange pieces of code in PureMVC's documentation: public function get resultEntry( index:int ) : SearchResultVO { return searchResultAC.getItemAt( index ) as SearchResultVO; ...
2
votes
3answers
402 views

MVC approach for JavaScript

I am searching for a decent framework for organizing my Javascript, jQuery assisted code according to MVCS micro-architecture. I did some research on JavaScriptMVC, and though it looks like a robust ...
2
votes
1answer
216 views

Asynchronous PureMVC in Python

Taking the following code from here, from the shortened version at the bottom, exists this proxy: class DataModelProxy(puremvc.patterns.proxy.Proxy): NAME = "DataModelProxy" def ...
2
votes
4answers
115 views

When is it best to change code to match standards?

I have recently been put in charge of debugging two different programs which will eventually need to share an XML parsing script, at the minimum. One was written with PureMVC, and another was built ...
1
vote
1answer
50 views

Pass proxy to loaded module in a PureMVC MultiCore app?

I'm creating a flash campaign which will be loaded into a client's framework, which I have no control over. The framework will already have loaded a few things such as locale, fonts and copy, and will ...
1
vote
1answer
71 views

Thoughts: PureMVC for flash games

So, after doing some research seems like adopting a pattern, in this case PureMVC, may be a good choice. But, I dont have any experiencie using this pattern when developing a game, except on a data ...
1
vote
3answers
154 views

PureMVC Mediators and views - creation and control

I'm making an app with flash AS3 and puremvc, the way to correctly handle view mediators is sort of throwing me a little... OK - I have 3 or 4 distinct views, each governed by it's own mediator. Each ...
1
vote
1answer
97 views

In PureMVC, where is the correct place to put Keyboard listener that controls a view?

I'm getting some PureMVC experience and I want to use keyboard commands to control my view. The rest of the application doesn't need to know about what this view is doing. Should I put them directly ...
1
vote
2answers
51 views

Some questions related to framework dependency

I have some questions related to framework dependency. Generally best coding practice says that don't clutter your namespace with framework specific code. For e.g. in case of spring all the dependency ...
1
vote
2answers
341 views

Creating RobotLegs Module within a PureMVC Shell Application

I'm working on an existing modular project that was built in PureMVC. Instead of converting everything over to RobotLegs, I want to create a new module using RobotLegs and plug it into the pureMVC ...
1
vote
1answer
47 views

One way Deep linking in PureMVC, How and When?

A project requirement is that it be 1 way deeplinkable(a specific query string will load a section within the swf). I have a URLProxy that I use for all external linking. It makes sense to me to put ...
1
vote
1answer
75 views

In proxy should I remove listeners explicitly?

Currently I am working on flex application where I am using multicore variant of puremvc. My question is in my proxy I am making remote call and attaching some (RESULT and FAULT) event listener. So in ...
1
vote
2answers
376 views

Advantages of using software framework

I was reading these days about large projects implementation in python and Flex, and very often people praise the use of framework (like Cairngorm, PureMVC or others) over traditional OOP coding. I ...
1
vote
3answers
431 views

Where to register mediator in puremvc?

Currently I am working on flex using puremvc framework. Actually my question is related to where to register mediator in puremvc framework. One of my colleague is registering mediator in ...
1
vote
2answers
405 views

Flex PureMVC: Mediator not registering

A component is created at runtime and a mediator is created and registered. All is well. In a separate view, another instance of that component is created. The mediator is created but onRegister() ...
1
vote
2answers
2k views

Classes must not be nested - MXML

I'm trying to build a simple FLEX application. Unfortunately, I get '1131: Classes must not be nested.' errors even with the simples MXML .... the error pops out at the mx:Application openning tag: ...
1
vote
2answers
758 views

Flex Application Framework — PureMVC Portability vs. Swiz?

My company is building a Flex application that we may need to port to other platforms: Silverlight (likely) Mobile (maybe -- iPhone: Objective-C , Android: Java, etc.) Desktop (maybe -- AIR, .NET, ...
1
vote
1answer
516 views

what is best place to register proxy and mediator in flex puremvc framework?

I am using puremvc framework for developing flex based project. My question is related to what is best way to delayed registering proxy class and mediator class ? Currently on startup command I am ...
1
vote
7answers
186 views

What design pattern? I need two modes in my app, edit and view

If I need two modes in my application what design pattern would I use so I can prevent ugly conditional code? App is currently MVC, but I don't want conditional code in my controllers and don't want ...
1
vote
2answers
3k views

AS3/PureMVC Best Practices? Best code examples of well architected projects?

I am a AS3 novice learning PureMVC and want to write code following best practices so that any other AS3 developer can pick up my code and easily understand what I did, I am tempted to do stuff as I ...
1
vote
1answer
2k views

Objectively, what are the pros and cons of Cairngorm over PureMVC?

There are so many reasons why using an MVC framework in Flex rocks, but picking the right one seems tricky. I am interested in what you all think from your experiences of implementing either of these ...
0
votes
3answers
42 views

How to perform repetitive actions in PureMVC flex application?

Currently working on a flex AIR project based on PureMVC framework. There was a new requirement to the project, an operation is to be performed repetitively at regular interval which has some business ...
0
votes
1answer
34 views

Multiple active screens in pure MVC how to manage notification for particular screen?

PURE MVC - In my application there are multiple screens which are minimized like in windows desktop. Now each has different instances of mediator which have same notification. So if I do changes in ...
0
votes
1answer
100 views

Learning PureMVC: Any good basic tutorial/example? [closed]

Again, I'm here looking for your wisdom, in this case, I need to learn PureMVC ASAP. Thing is, at work all my programmer teammates use PureMVC in a flex webapp, the app is pretty huge and when I have ...
0
votes
3answers
51 views

Implementing process workflow in PureMVC

I'm looking for suggestions regarding implementing process flow / work flow management in a PureMVC based application. Our Flex application includes a number of processes such as account creation, ...
0
votes
0answers
49 views

SWFAddress+SWFObject gotchas? [closed]

About to start work on a major project that requires use of SWFAddress and SWFObject in conjunction with PureMVC. Working from an older code base that uses SWFAddress 2.1 and SWFObject 2.0. Last ...
0
votes
1answer
103 views

In puremvc, how to wait for sendNotification/notifyObservers finishes

In PureMVC / ActionScript, after sending out notifications using send Notification or notify-observers, how do I make sure all the observers has received the notification and finished the work? On ...
0
votes
1answer
189 views

Flex MultiCore PureMVC Notifier initialization error

I am trying to write a simple multicore PureMVC helloword. I am getting Error: multitonKey for this Notifier not yet initialized! at org.puremvc.as3.multicore.patterns.observer::Notifier/get ...
0
votes
1answer
114 views

MVC pattern don't understand one sentence

Trying to use PureMVC framework and understand MVC concept. Don't understand this sentence: The Model caches named references to Proxies, which expose an API for manipulating the Data Model. The ...
0
votes
2answers
87 views

Flash Builder: Change default suite for unit tests?

What are the steps to change your default suite when running unit tests in Flash Builder 4 with PureMVC?
0
votes
1answer
121 views

Web service using C# PureMVC framework

I am developing a web service in C# using the C# port of the PureMVC framework. The web service uses nHibernate to connect to and manipulate the database. I have tried to find information about how ...
0
votes
1answer
305 views

PureMVC and Navigation with Silverlight (C#) for Windows Phone 7 (WP7)

I've used PureMVC before with AS3, and am playing around with WP7 so thought it would make sense to try the C# port (http://trac.puremvc.org/PureMVC_CSharp/) The problem I'm having is that the ...
0
votes
1answer
154 views

Multiple instances of views in PureMVC: Am I doing this right?

What I'm doing NOW: Often multiple instances of the view component would be used in multiple places in an application. Each time I do this, I register the same mediator with a different name. When ...
0
votes
1answer
44 views

How to test this scenario?

I have a desktop application made in Flex using PureMVC multi-core and Sqlite as back-end.Now, I want to write integration tests.The proxy layer makes database calls using async method of ...
0
votes
1answer
90 views

Casting a retrieved Mediator with PureMVC as its proper class returns null

I have a mediator that I've registered for a navigation page: facade.registerMediator(new NavPageMediator(viewComponent)); I'm trying to retrieve that mediator on another page like so: var ...
0
votes
1answer
180 views

Structuring System Architecture in a Flex Web Application on a Budget (w/o Java)

I started a project a while back using the following architecture from Adobe Developer Article talking about Creating marketing platforms in Flex. I did my first set of coding locally forgetting that ...
0
votes
2answers
116 views

Creating an API for a View Component in PureMVC?

In the context of AS3 and specifically a framework such as PureMVC, I was wondering if someone could point me in the right direction for understanding what an API for a View Component means. Thanks ...
0
votes
1answer
220 views

Popup dialog box manager using PureMVC

I am developing a a game in Flash using the PureMVC framework. From time to time I need to show dialog pop-up window to get a user response back (e.g. "Cancel", "OK" and other kinds of asynchronous ...
0
votes
1answer
355 views

BlazeDS/PureMVC and shared vos

I'm building modular application with 2 modules which share common vo: ShopRegionVO This vo is also a BlazeDS entity and is mapped to a remote java object. When shell loads first module everything is ...
0
votes
2answers
660 views

Use Three20 URL-based Navigation with PureMVC?

is anybody already using Three20 URL-based Navigation with PureMVC? I am not sure where to implement the URL mapping. In the AppDelegate, Faceade, RootViewController? Thanks for helping.
0
votes
1answer
110 views

Is the Mediator must hold a view in PureMvc?

i have one question about pureMvc. i uew pureMvc to build an engine, in the engine init part i have an requirement 1) moduleA must init firt 2) moduleB , moduleC need init after moduleA init ...
0
votes
1answer
105 views

How to use the Facade.Instance method without object construction?

I only recently completed a unit on software patterns and am now attempting to comprehend the PureMVC framework. One thing has got my stumped however, something which is simple to the gurus here. I'm ...
0
votes
1answer
130 views

pureMVC: unique mediator for each tab in an interface

I am building a tabbed interface for switching between various similar layers. Each layer will have a number of graphs. By dragging with the mouse the graphs can be rearranged or even moved between ...

1 2