RE: [flexcoders] BindingUtils question.

2009-05-25 Thread Yves Riel
hod as it was earlier suggested by Rajan. 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 Bin

Re: [flexcoders] BindingUtils question.

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

[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

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 sin

[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