[flexcoders] Re: Cairngorm Question

2009-04-10 Thread nathanpdaniel
Wrap your head around the idea that the model controls the view. Even the data portions. You should bind your combo box dataprovider to the model property storing that data (from server based on combo box 1 selection). Why you don't need cairngorm for enabling? You can just set you're 2nd

Re: [flexcoders] Re: Cairngorm Question

2009-04-10 Thread Kusunam, Srinivas
Nathan Claudieu, Thanks for the response. After I posted my question I started reading and thinking how to correct this and came up with the same idea Nathan suggested. I started refactoring everything and so far it is going great. On Apr 10, 2009, at 3:46 AM, nathanpdaniel

[flexcoders] Re: Cairngorm question

2007-03-18 Thread sleekdigital
Some usefull links... http://labs.adobe.com/wiki/index.php/Cairngorm http://www.cairngormdocs.org/ -Steve --- In flexcoders@yahoogroups.com, Michael [EMAIL PROTECTED] wrote: Where can I download cairngorm 2.0. I believe I have downloaded the .99 version, but I didn't get a chance to learn

RE: [flexcoders] Re: Cairngorm - Question on using ResultHandler

2007-01-29 Thread Dimitrios Gianninas
. From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of malik_robinson Sent: Sunday, January 28, 2007 9:11 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm - Question on using ResultHandler Hi, Thanks for the help

[flexcoders] Re: Cairngorm - Question on using ResultHandler

2007-01-29 Thread malik_robinson
@yahoogroups.com Subject: [flexcoders] Re: Cairngorm - Question on using ResultHandler Hi, Thanks for the help. That worked and it called the next command which is what I wanted. In my result handler in the command that gets called next this works: public function result( data:Object ):void

[flexcoders] Re: Cairngorm - Question on using ResultHandler

2007-01-28 Thread malik_robinson
Hi, Thanks for the help. That worked and it called the next command which is what I wanted. In my result handler in the command that gets called next this works: public function result( data:Object ):void { var event:ResultEvent = data as ResultEvent model.employeeList =

RE: [flexcoders] Re: Cairngorm question

2006-06-06 Thread Steven Webster
: flexcoders@yahoogroups.comSubject: RE: [flexcoders] Re: Cairngorm question Steven,As a request. I am very interested in your teams ideas of the cairngorm framework that fully utilizes Flex Data Services. I assume the Flex2 release isnt far away and I hope an example

[flexcoders] Re: Cairngorm question

2006-06-05 Thread Mike Britton
For what it's worth, I'm also interested in either the updated articles for CG2B3/Flex 2.0 or a *basic* sample application, before the Flex 2 release if possible. Mike -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives:

RE: [flexcoders] Re: Cairngorm question

2006-06-05 Thread Steven Webster
@yahoogroups.com Subject: [flexcoders] Re: Cairngorm question For what it's worth, I'm also interested in either the updated articles for CG2B3/Flex 2.0 or a *basic* sample application, before the Flex 2 release if possible. Mike Yahoo! Groups Sponsor

RE: [flexcoders] Re: Cairngorm question

2006-06-05 Thread Bjorn Schultheiss
[mailto:flexcoders@yahoogroups.com] On Behalf Of Steven Webster Sent: Tuesday, 6 June 2006 7:41 AM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Cairngorm question Hi guys, As I'm sure you're aware, the product team are gearing up for Flex 2 release. As the product goes through it's final revs

[flexcoders] Re: Cairngorm question

2006-06-01 Thread Tim Hoff
Hi Michael, Probably the best place to start is by reading this article series: http://www.adobe.com/devnet/flex/articles/cairngorm_pt1.html From there you can continue to learn from the articles and samples available at Adobe. Sincerely,Tim Hoff --- In flexcoders@yahoogroups.com, "Michael"

RE: [flexcoders] Re: Cairngorm Question

2006-01-25 Thread Leon Tanner
2006 13:52 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm Question Hi Leon, A couple things here. 1) In ANT you can, at build time, replace tokenized values in any file. We do this quite a lot. So for instance you could modify your flex-config to do amf-gateway/@webappname

RE: [flexcoders] Re: Cairngorm Question

2006-01-25 Thread Leon Tanner
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Peter Watson Sent: 24 January 2006 18:32 To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] Re: Cairngorm Question Hi Leon, This mxmlc option will enable setting the amfgateway url @ runtime: -remoteallowurloverride It will allow you

RE: [flexcoders] Re: Cairngorm Question

2006-01-24 Thread Leon Tanner
-Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darron J. Schall Sent: 24 January 2006 00:45 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Cairngorm Question Dave Wolf wrote: I was just shown your weblog today about

[flexcoders] Re: Cairngorm Question

2006-01-24 Thread Dave Wolf
@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Darron J. Schall Sent: 24 January 2006 00:45 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Cairngorm Question Dave Wolf wrote: I was just shown your weblog today about this and they are awesome. The crazy part is they look

RE: [flexcoders] Re: Cairngorm Question

2006-01-24 Thread Peter Watson
@yahoogroups.com Subject: RE: [flexcoders] Re: Cairngorm Question Ok, we've gone down the route of using mxmlc.jar for precompilation. The reason is purely to include data within the SWF to save a return trip to the server - and also to reduce the load on the server at initial request time. Our process

[flexcoders] Re: Cairngorm Question

2006-01-23 Thread fowleryj
Hi Robin, Thanks again for all of the help so far. The next question I have is for any and all Flexcoders whose application is growing to a rather large size (100s of files, etc). How are you keeping your compile time down? Our application takes between 30 seconds to 1 minute to refresh, and

[flexcoders] Re: Cairngorm Question

2006-01-23 Thread Dave Wolf
We are firm believers of precompiling our applications when in production rather then using the JIT MXML compiler. We are big proponents of ANT and automate the builds of not only the MXML but of the entire production server. With one command line we build the entire site ready to go into

Re: [flexcoders] Re: Cairngorm Question

2006-01-23 Thread Anatole Tartakovsky
om Sent: Monday, January 23, 2006 2:20 PM Subject: [flexcoders] Re: Cairngorm Question Hi Robin,Thanks again for all of the help so far.The next question I have is for any and all Flexcoders whoseapplication is growing to a rather large size (100s of files, etc).How are you keeping yo

Re: [flexcoders] Re: Cairngorm Question

2006-01-23 Thread Darron J. Schall
Dave Wolf wrote: We are firm believers of precompiling our applications when in production rather then using the JIT MXML compiler. We are big proponents of ANT and automate the builds of not only the MXML but of the entire production server. With one command line we build the entire site

[flexcoders] Re: Cairngorm Question

2006-01-23 Thread Dave Wolf
I was just shown your weblog today about this and they are awesome. The crazy part is they look a ton like ours. Guess you have a couple of smart people and they reach the same conclusions! Really great posting Darron. We have tons of macros for everything from compiling the swf, the rsl's,

Re: [flexcoders] Re: Cairngorm Question

2006-01-23 Thread Darron J. Schall
Dave Wolf wrote: I was just shown your weblog today about this and they are awesome. The crazy part is they look a ton like ours. Guess you have a couple of smart people and they reach the same conclusions! Really great posting Darron. We have tons of macros for everything from compiling

[flexcoders] Re: Cairngorm Question

2006-01-18 Thread fowleryj
Thank you Jeff, Bruno, and Robin. We're evaluating the options now, and I'll get back to you with further questions. We appreciate your swift responses very much. :) --- In flexcoders@yahoogroups.com, Robin Hilliard [EMAIL PROTECTED] wrote: Hi YJ, RocketBoots is working with a development

[flexcoders] Re: Cairngorm Question

2006-01-17 Thread fowleryj
Hi Robin, Your application appears very organized and well thought-out. One question: If workspace instance X broadcasts an event, and workspace instance Y is also open (in this example, let's say that both X and Y are instances of the search screen, and X just broadcasted a search event), would

[flexcoders] Re: Cairngorm Question

2006-01-17 Thread fowleryj
Robin, Your setup seems very organized and well thought-out. One question: What happens in your application if workspace instance X broadcasts an event while the workspace instance Y is open (let's say for this example that both X and Y are searches, and the event that is broadcast is a search

Re: [flexcoders] Re: Cairngorm Question

2006-01-17 Thread Robin Hilliard
Hi YJ, Sure - the Cairngorm code is unmodified. For instance, in your view you might have: private var viewHelper : OurViewHelper; private var searchDefinition : SearchDefinitionVO; ... EventBroadcaster.getInstance().broadcastEvent (OurController.SEARCH_COMMAND,

[flexcoders] Re: Cairngorm question

2005-08-30 Thread Daniel Harfleet
Alberto, this seems a fair approach to me, you may also want to include some logic to disconnect from the flash comm server when you know you are not interested in receiving updates and maybe even a 'recovery plan' for the service should the connection to the FCS be broken. rgds dan --- In

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
Thank you Daniel, if no more suggestions/corrections are done, I will take that choice. Of course a recovery plan was planed plus de mute option is also welcome. :) Daniel Harfleet escribió: Alberto, this seems a fair approach to me, you may also want to include some logic to disconnect from

RE: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alex Uhlmann
PROTECTED] Behalf Of Daniel Harfleet Sent: 30 August 2005 10:10 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm question Alberto, this seems a fair approach to me, you may also want to include some logic to disconnect from the flash comm server when you know you are not interested

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of Daniel Harfleet Sent: 30 August 2005 10:10 To: flexcoders@yahoogroups.com Subject: [flexcoders] Re: Cairngorm question Alberto, this seems a fair approach to me, you may also want to include some logic to disconnect from

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
: 30 August 2005 14:25 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Cairngorm question Hi Alex, I like the idea of Listeners and they way you point to manage server pushes injecting events and data to the Cairngorm architecture. Mainly because server pushes are treat just like

Re: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alberto Albericio Salvador
Subject: Re: [flexcoders] Re: Cairngorm question Hi Alex, I like the idea of Listeners and they way you point to manage server pushes injecting events and data to the Cairngorm architecture. Mainly because server pushes are treat just like if they were data from a user-gesture. If possible, send

RE: [flexcoders] Re: Cairngorm question

2005-08-30 Thread Alex Uhlmann
iteration::two -Original Message- From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] Behalf Of Alberto Albericio Salvador Sent: 30 August 2005 18:32 To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Re: Cairngorm question Hi again, Im trying to create a business