Re: [flexcoders] Re: Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-07 Thread Josh McDonald
The BindUtils doesn't work quite like that. Let's take this MXML snippet: {model.someObject.name} The equivalent call to bindSetter would be: var watcher : ChangeWatcher = BindingUtils.bindSetter(setterFunction, this, ["model","someObject","name"]); -Josh On Wed, Jan 7, 2009 at 3:20 PM, john.c

[flexcoders] Re: Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-07 Thread john.casey64
Gotit. or Bindutils don;t work. But listening for the event does. __model.managedElements.addEventListener(CollectionEvent.COLLECTION_CHANGE, buildTree); I figured it was a newbie question. Thanks for the help. --- In flexcoders@yahoogroups.com, "Josh McDonald" wrote

[flexcoders] Re: Newbie question: Completion Events or proxy binding for RemoteObject calls

2009-01-07 Thread john.casey64
Apparently not. http://www.actionscript.org/forums/showthread.php3?t=165084 My remote value object is a [Bindable] ArrayCollection. My tree provider object is a [Bindable] xlmlistcollection which I rebuild using a function, once the ArrayCollection gets populated. This does not work. var w