Tagged Questions
Cairngorm is an open source frameworks for application architecture in Adobe Flex. Is is based on the MVC model.
5
votes
6answers
2k views
How can I unit test Flex applications from within the IDE or a build script?
I'm currently working on an application with a frontend written in Adobe Flex 3. I'm aware of FlexUnit but what I'd really like is a unit test runner for Ant/NAnt and a runner that integrates with the ...
2
votes
1answer
136 views
Why are Java value objects coming back as Generic Flex objects?
I will try to give as much detail as I can.
I am creating an CRM application using Flex(Cairngorm 2)/Java/Hibernate.
The basic problem I am having is this:
I have a Customer class in Java that has ...
2
votes
2answers
125 views
How to turn a flex online application into a desktop application?
I we have been working for some years in a flex (cairgorn)+spring+blazeDataservice application using blazeDataservice to connect to the back end, now its getting kind of big and takes too much time ...
2
votes
1answer
206 views
How do I add the SWC file for Cairngorm to my app without FlexBuilder?
I am not using FlexBuilder, I'm using the free Flex SDK with TextMate. I'm having some trouble figuring out what this FlexBuilder process actually does behind all the nice dialogs and things, so that ...
1
vote
2answers
95 views
Where is the M in MVC? [closed]
The question I am going to ask was inspired by my latest work with the Flex platform (and some frameworks pretending to implement MVC), but I think it's general enough to involve people with various ...
1
vote
3answers
179 views
Flex-Cairngorm/Hibernate - Is EAGER fetching strategy pointless?
I will try to be as concise as possible. I'm using Flex/Hibernate technologies for my app. I also use Cairngorm micro-architecture for Flex. Because i'm beginner, i have probably misunderstand ...
1
vote
2answers
148 views
ModuleMessageInterceptor vs MessageInterceptor
I am developing an application in Flex using the cairngorm module library and Parsley.
Parsley documentation chapter 5 says: "Interceptors may come in handy when you want to decide whether or not the ...
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
4answers
480 views
Best way to do events with the PopUpManager?
If I am using the PopUpManager to add a child, and I dispatch an event from that child, the bubbles don't seem to bubble to the top of my application (main application).
For instance:
...
1
vote
2answers
129 views
Cairngorm Fault Handler
According to Cairngorm architecture, we always have a fault handler in every command class for each service.
How we can create a single Class for handling Fault handler event for all the services.
1
vote
0answers
242 views
Current_user nil after creating a session in ROR with AuthLogic
I'm having a bit of problems with AuthLogic and current_user.
I have a Flex4 application using the Cairngorm framework as the front-end, and Ruby On Rails as the back-end.
I can log in fine ...
1
vote
0answers
631 views
Channel.Ping.Failed error Detected duplicate HTTP-based FlexSessions What's the root cause?
Hi
I've downloaded the Cairngorm3 Simple Sample Application from here.
There's a few steps.
a) Download the server-side zip. It contains a PDF instructing how to start a HSQLDB database and get a ...
1
vote
3answers
201 views
Why is my object reference null when trying to reference an mx:Canvas from ActionScript?
this is a follow up question from this one, I don't want to keep going in the comments and preventing people from getting hard-earned reputation... :)
In my Cairngorm command class, to get it to ...
1
vote
6answers
375 views
Why use Flex instead of HTML/AJAX/PHP frameworks?
I have some experience of developing in Flex/Actionscript using Cairngorm framework. At that time I had no prior experience of ActionScript/Flex and it took me some good 3 months to get started with ...
1
vote
1answer
591 views
Cairngorm Framework V3 Vs Cairngrom framework V2
I have seen some white papers, Cairngorm V2 is not always good to use for flex framework.
so many flex projects are converted cairngorm 2 to cairngorm 3.
What i guess is what ever cairngorm 3 is ...
1
vote
1answer
251 views
Project doing in mvc pattern using cairngorm framework
hii ..
I wish to do my project in mvc pattern. so I chose cairngorm framework and just read some of the document about this framework.But I cant understand deeply to do project using this framework. ...
1
vote
1answer
270 views
How to create instance model that can be shared throughout a component (which can be created more than once)
I am trying to create a modular structure that will eventually live inside another actionscript/flex application. I am using cairngorm in the outside application and I'd like to create more than one ...
1
vote
6answers
188 views
how much effective is a frameworks for RIA in long run?
i am pretty newbie in terms of flex/RIA frameworks. mostly done work on server side. as i search on internet , people are using a lot different framework, cairngorm to mate. so my question is , as i ...
1
vote
2answers
377 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
1answer
78 views
Is there a jquery micro-architecture similar to cairngorm for Flex?
Is there a jquery micro-architecture similar to cairngorm for Flex? That helps development a lot. It makes it more disciplined, and layers out the code.
Is there a good starting point that I have to ...
1
vote
2answers
420 views
How can I test for an event sequence in FlexUnit 4?
I have a component that, on creation, dispatches two events to populate data fields. The events should remain separate because they're used elsewhere for distinct actions.
I want to write an ...
1
vote
1answer
240 views
Flex, Cairngorm and XML-RPC
I'm new to Flex, and Cairngorm so bear with me...
I need to integrate a Flex application with a Magento site. I prefer to do it with XML-RPC instead of web services because of speed and our other ...
1
vote
2answers
1k views
Flex Cairngorm Spring Blazeds - Remoting Error - help me please
I seem to be getting the following error when I try to access a Remote Java class (on Spring/BlazeDS) from the Flex/Cairngorm application. I am going crazy at the moment trying to see what is wrong - ...
1
vote
3answers
202 views
Cairngorm XXXCommand be executed several times
I ran into a problem.I'm doing a GIS program using flex.
There's a map in my Application,when I click one icon on the map,windowA pops up,when I click a link inside windowA,windowB pops up,but here ...
1
vote
3answers
935 views
Flex - Checking for change in fields under a tab
I'm developing a flex application with 4 tabs. When the user switches a tab I want to reset the previous tab to its initial state. Also I need to alert the user, if he hasn't saved the changes he made ...
1
vote
2answers
1k views
How to force Flex validation when a container is displayed
I have a Flex 3 app with a view in a viewstack, and that view must only be created when requested. I have declared validators for each of the controls on the view and I have created a method called ...
1
vote
3answers
1k views
How do I implement data binding in an ActionScript Class?
I am having a problem with binding values in my ActionScript components. I basically want to set the value of a a variable in my component to a value in the model, and have the component variable ...
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
0answers
18 views
Flex: Adding tabs with Actionscript to TabNavigator => not displayed
in the ModelLocator (singleton according to Cairngrom) I do create an instance of a TabNavigator:
public var tabNavEngTypeDet:TabNavigator = new TabNavigator();
public var tabNavEngDet:TabNavigator = ...
0
votes
1answer
35 views
Not assigning data from java VO to Flex VO using cairngorm
I have a few values in Java VO, and using cairgorm framework, i had mapping the Java VO to Action script VO in Flex and given same variables name as java Vo variables name. Now the Vo is mapping fine ...
0
votes
1answer
24 views
Error: cannot add .mxml file to project
I have a project .swc made with maven. the build is successful.
If I add the project to Flashbuilder, i get no errors.
But if i add a .mxml file with flashbuilder, so its generated from flashbuilder.
...
0
votes
1answer
23 views
Unable to create SqlMap for PersistenceClient with Cairngorm Persistence Library
i am trying to create a persistence client object in the following way:
var create:Create = new Create();
create.sql = "CREATE TABLE IF NOT EXISTS REPOFILE( REPOFILEID INTEGER PRIMARY KEY ...
0
votes
0answers
60 views
Flex: Loading external SWF and displaying it in popup - works with some loaded apps, not all
I have a flex app (sdk 4.1) and need to dynamically load another app (compiled with the same sdk) from an SWF.
Unfortunately, this is giving lots of problems.
This is the code to load the SWF. It ...
0
votes
0answers
148 views
How cairngorm suites for Flex 4.5 mobile application
Can cairngorm framework suites for developing mobile application using flex 4.5 ?
0
votes
1answer
56 views
How cairngorm framework works internally
I had gone through many documents, no where mentioned how cairngorm framework works internally, means, how cairngorm Event, frontController, BusinessDelegate,ServiceLocator,Commands works and why we ...
0
votes
1answer
67 views
Reading server URL from ActionScript 3 for Cairngorm configuration
I need to read the URL that the browser shows when a Flex application is called because I would to reference it in a mxml configuring Cairngorm remote objects.
The goal I would reach is to ...
0
votes
2answers
99 views
how to see this class CairngormEvent source code?
import com.adobe.cairngorm.control.CairngormEvent;
public class ConfigurationEvent extends CairngormEvent {
i can not see this CairngormEvent.swc i don't know which .swc file could i add in lib?
...
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
1answer
200 views
Cairngorm Model Locator Pattern
In Cairngorm (Flex Framework), there is Model Locator Pattern, which is similar to Global variables, is it a right pattern, Adobe is saying for flex its best pattern
Adobe Consulting team ...
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
46 views
Reduing the layer complexity of a Cairngorm based application
Could tools like SWFAddress be used in some clever ways to alleviate an existing client-server architecture. I see possibilities to even introduce REST-like pattern mapping or something like that.
...
0
votes
1answer
66 views
Question Binding
HiI have some code. I use Cairngorm.I create a simple command, controller, event, modelLocator, model and view.In my view I have a textInput bind with a variable 'value' form my model
<s:TextInput ...
0
votes
2answers
258 views
Cairngorm SequenceTask + URLLoader throws SecurityError because of missing user interaction
I am trying to get an application to upload multiple client side generated images (not files, hence I can't use FileReference), while displaying the progress of the upload. This has proved to be way ...
0
votes
2answers
127 views
Flex Caringorm calling multiple command in one call (Queue Command)
I want to call 3 commands one by one , the relation between each commands are command should execute one by one in the previous command result. How to Queue Command's? What is the best practice to ...
0
votes
1answer
307 views
Flex Search Interface: Load XML or Query DB
For a Flex application that is used to search and display results (no write operations), I am currently storing data in a relational database,
but rather than querying the DB via the app, I am doing ...
0
votes
1answer
60 views
What's the smallest size a cairngorm project can be?
That is , what's the size of the bootstrap code for cairngorm framework which is based on flex?
0
votes
2answers
755 views
How do you use Parsley framework in Flex Hero 4.5
I was wondering if Parsley framework is compatible for Flex Hero Mobile 4.5? I seem to get a warning saying it's not compatible.
Thanks guys
0
votes
2answers
190 views
Framework model for AIR and Android applications.
Can someone please suggest me some good framework (officially released) to follow for developing AIR Desktop and android applications just like Cairngorm for flex web applications.
Thanks
Piyush G.
0
votes
1answer
56 views
Is it possible to compile a flex project that uses Cairngorm with command line?
Has anyone tried to compile a flex project that uses Cairngorm with command line?
0
votes
2answers
466 views
Set time 5 seconds to dispatch cairngorm event in flex
I have a live chart. I need to refresh the chart with 5 seconds time interval.
For displaying the live chart i disptach the event (myEvent) extends cairngormevent.
And after 5 seconds , the same ...