[flexcoders] ModelLocator for each modules????

2008-06-05 Thread slash_n_rose
Hi All I'm using Cairngorm in my application, which has different big modules. For example one module may be project management and other contact management. Do I need to make different ModelLocator files for these modules?? Regards Jerry

Re: [flexcoders] ModelLocator - Cairngorm 2

2006-07-14 Thread Oscar . Cortes
| | cc: | | Subject: [fle

[flexcoders] ModelLocator - Cairngorm 2

2006-07-14 Thread jrjazzman23
I can't get the reference implementation to compile (pasted below). Seems to be missing a constructor. How should this be solved keeping in mind that private constructors aren't supported? [Bindable] public class ShopModelLocator implements ModelLocator { private static var mo

RE: [flexcoders] modellocator and double bindings

2006-07-07 Thread Moishe Groger
riday, July 07, 2006 3:42 PMTo: flexcoders@yahoogroups.comSubject: Re: [flexcoders] modellocator and double bindings holy creations batman!  sounds like a good reason.  Now, would adding a creationPolicy="all" to the root application tag address this maybe?DK On 7/7/06, Moishe Groger &l

Re: [flexcoders] modellocator and double bindings

2006-07-07 Thread Douglas Knudsen
model until the local controls are created.   Moishe Groger From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Douglas KnudsenSent: Thursday, July 06, 2006 11:06 PMTo: flexcoders@yahoogroups.comSubject: [flexcoders] modellocator and double bindings Ok, before th

RE: [flexcoders] modellocator and double bindings

2006-07-07 Thread Moishe Groger
oups.comSubject: [flexcoders] modellocator and double bindings Ok, before the big hoorah relase of FB 2 and cairngorm2 I had a appthat has a few forms in it bound to a VO hanging out in themodellocator. I used double bindings to display and update values inthe VO like thisdestination=&q

Re: [flexcoders] modellocator and double bindings

2006-07-07 Thread Douglas Knudsen
t;[EMAIL PROTECTED]> wrote: > > Does your VO class have the "[Bindable]" at the top of it? > > -Original Message- > From: flexcoders@yahoogroups.com on behalf of Douglas Knudsen > Sent: Thu 7/6/2006 11:05 PM > To: flexcoders@yahoogroups.com > Subject: [flex

RE: [flexcoders] modellocator and double bindings

2006-07-07 Thread Dimitrios Gianninas
Does your VO class have the "[Bindable]" at the top of it? -Original Message- From: flexcoders@yahoogroups.com on behalf of Douglas Knudsen Sent: Thu 7/6/2006 11:05 PM To: flexcoders@yahoogroups.com Subject: [flexcoders] modellocator and double bindings Ok, before the big hoo

[flexcoders] modellocator and double bindings

2006-07-06 Thread Douglas Knudsen
Ok, before the big hoorah relase of FB 2 and cairngorm2 I had a app that has a few forms in it bound to a VO hanging out in the modellocator. I used double bindings to display and update values in the VO like this things worked swell. Then came the update to Flez 2 and cairngorm and

RE: [flexcoders] ModelLocator

2005-08-23 Thread Mercer, Dustin
Behalf Of Mehdi, Agha Sent: Tuesday, August 23, 2005 12:15 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ModelLocator   Great. That sounds exciting and a very good approach. The way I’m implementing is that I have a ModelLocator, which has models as properties. Now should those

RE: [flexcoders] ModelLocator

2005-08-23 Thread Shahnavaz Alware
: Array; public static var organization : OrganizationalUnitVO;   }   From: flexcoders@yahoogroups.com [mailto:flexcoders@yahoogroups.com] On Behalf Of Mehdi, Agha Sent: Tuesday, August 23, 2005 12:15 PM To: flexcoders@yahoogroups.com Subject: RE: [flexcoders] ModelLocator   Great

RE: [flexcoders] ModelLocator

2005-08-23 Thread Mehdi, Agha
@yahoogroups.com Subject: RE: [flexcoders] ModelLocator   Exactly.  I found after implementing the ModelLocator, I pretty much wiped out the need for ViewHelpers.  The only thing I use the ViewHelpers for now is setting focus on fields!  It makes things a lot more organized and simplified.  You are

RE: [flexcoders] ModelLocator

2005-08-23 Thread Mercer, Dustin
initialize it in the app init event and you will be able to use it anywhere, anytime.   Dustin Mercer   From: flexcoders@yahoogroups.com [mailto:[EMAIL PROTECTED] On Behalf Of Mehdi, Agha Sent: Tuesday, August 23, 2005 11:30 AM To: flexcoders@yahoogroups.com Subject: [flexcoders] ModelLocator

[flexcoders] ModelLocator

2005-08-23 Thread Mehdi, Agha
Title: ModelLocator Hi All, How does ModelLocator work? I am looking at the sample store and it makes sense but I am kind of confused. What I have understood so far is that ModelLocator Properties are bound to views and Commands manipulate ModelLocator to update views. Is ModelLocator avail