RE: [flexcoders] BindingUtils question.

2009-05-25 Thread Yves Riel
. From: flexcoders@yahoogroups.com [mailto:flexcod...@yahoogroups.com] On Behalf Of Rajan Jain Sent: Friday, May 22, 2009 5:34 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] BindingUtils question. Try using BindingUtils.bindSetter and create function

[flexcoders] BindingUtils question.

2009-05-22 Thread markflex2007
I read a demo BindingUtils.bindProperty(dogNameText, text, myDog, name) dogNameText is textInput and myDog is a object how to I bind dogNameText's Texr property to one variable like myString BindingUtils.bindProperty(dogNameText, text, myString) give me error. Please give me a idea how to do

Re: [flexcoders] BindingUtils question.

2009-05-22 Thread Rajan Jain
Try using BindingUtils.bindSetter and create function. From: markflex2007 markflex2...@yahoo.com To: flexcoders@yahoogroups.com Sent: Friday, May 22, 2009 5:07:21 PM Subject: [flexcoders] BindingUtils question. I read a demo BindingUtils. bindProperty

[flexcoders] BindingUtils question

2008-04-15 Thread Dominic Pazula
I have a List Component whose dataProvider is an ArrayCollection of generic objects. I have another object I would like to bind a property of to a property to the selectedItem of the List. I have: BindingUtils.bindProperty (currentOp,type,this.columnList.selectedItem,TYPE); No go... I see

Re: [flexcoders] BindingUtils question

2008-04-15 Thread Daniel Gold
Binding will not work with dynamic objects, which it sounds like you're using. I have a feeling your invisible text field trick is only working when you switch selectedItem. Seems like if you kept the same item selected and the TYPE property changed on that item, the binding would not fire, but