[flexcoders] ComboBox not updating

2009-08-18 Thread Richard Rodseth
The full story is too long to relate and involves the component which has given me more grief than any other - ComboBox. I'm pretty sure I established a while ago that there's a bug in using a ComboBox with a bound value for selectedIndex. I have one whose dataprovider (and current selected index)

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Everson Alves
The dataprovider is an arraycollection or any IList? try dataprovider.refresh(); On Tue, Aug 18, 2009 at 8:59 PM, Richard Rodseth wrote: > > > The full story is too long to relate and involves the component which has > given me more grief than any other - ComboBox. I'm pretty sure I established

Re: [flexcoders] ComboBox not updating

2009-08-18 Thread Jeffry Houser
You can change the label directly. Look into the protected textInput field of ComboBase. You can easily extend the ComboBox class to expose this textInput as public; and then update it directly. Richard Rodseth wrote: The full story is too long to relate and involves the component which