Questions tagged [puremvc]

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

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

Based upon proven design patterns, this free, open source framework which was originally implemented in the ActionScript 3 language for use with Adobe Flex, Flash and AIR, is now being ported to all major development platforms.

Two versions of the framework are supported with reference implementations; Standard and MultiCore. More info

Project website: http://puremvc.org/

Source codes: https://github.com/PureMVC

82 questions
0
votes
2 answers

Flex PureMVC: Can proxy keep reference of a View component in following case?

I am learning pureMVC and trying to implement the framework into one of my application. I have follwing case: My main application has Canvas which is used to add different kind of custom components. One of the custom component is a "Search…
0
votes
1 answer

Using sort of factory class ( instance creator ) in an MVC

I am trying to centralize the building of all the view instances using a centralized class called Factory. Had instantiated the factory class inside model. But later on, this structure started creating problems. So asking it here. Where should such…
Vishwas
  • 1,533
  • 2
  • 19
  • 40
0
votes
2 answers

What event is fired when a Mediator is Registered?

I wrote the following test for my PureMVC project [Test] public function facadeCanRegisterMediator():void { if(!Facade.getInstance().hasMediator(NewReelMediator.NAME)) { Facade.getInstance().registerMediator(new NewReelMediator()); …
Avik
  • 723
  • 6
  • 16
0
votes
1 answer

In PureMVC, should Proxies send Notifications themselves, or do so via the ApplicationFacade?

In the PureMVC framework, Proxies communicate with the ApplicationFacade (and thus any interested components) via a Notification. Should this Notification be sent via their own instance, or the Singleton instance of the ApplicationFacade? Frankly,…
bedwyr
  • 5,774
  • 4
  • 31
  • 49
0
votes
1 answer

Flex modulleader url, why cant it just look at the root?

We are using pureMVC multicore as the flex Framework, When we need to load a module we use the first line "moduleEval.swf";. It works well in local for testing. But not on the production server which is obvioulsy online, in which case i need to put…
coulix
  • 3,328
  • 6
  • 55
  • 81
0
votes
2 answers

PureMVC and Flex for Beginner's

I am core java and Java EE developer with loads of experience in UI and web applications. I have encountered in a project now which has Flex and ActionScript as technologies for development and i have totally no idea about what is the above two and…
GOK
  • 2,338
  • 6
  • 34
  • 63
0
votes
4 answers

Inherited Classes and Dynamic Views in PureMVC (AS3)

I was wondering best practices for views of inherited classes in PureMVC in this situation: Multiple classes inherit a BaseClass (lets say InheritedClass1 and InheritedClass2) Each InheritedClass has a respective view (derived from a base view…
user117046
  • 577
  • 2
  • 5
  • 19
1 2 3 4 5
6