[flexcoders] Re: Combo Box Quirk or Bug

2005-07-28 Thread greenfishinwater
How do you do the data binding to the textbox, can either of the 3 combo boxes populate the text field? I do something similar where I display the description from the combo box: {forecastAgeCBO.selectedItem.label} Then my label has: Andrew --- In flexcoders@yahoogroups.com, "charlespaz1" <

[flexcoders] Re: Combo Box Quirk or Bug

2005-07-28 Thread charlespaz1
It is not a seperate text field, but the combo boxes' own text fields that they won't fill in. The data is bound by setting the data provider to an Array of strings. function assignData() { var arrData:Array = new Array("string1", "String2"); assetMFR.dataProvider = arrData; } Typing in

[flexcoders] Re: Combo Box Quirk or Bug

2005-07-28 Thread greenfishinwater
maybe it is because you have not called the function assign data, as it is in here that the dataprovider binding is setup. Why not set the binding up on the combo: and make sure that the array arrData, is defined outside of the function Andrew --- In flexcoders@yahoogroups.com, "charlespaz1" <[

[flexcoders] Re: Combo Box Quirk or Bug

2005-07-29 Thread charlespaz1
The bound data array changes, thats why its in a function. It binds properly and works fine EXCEPT for selecting items, which should have nothing to do with the binding of the data as the data is bound properly and listed fine. It just doesn't allow you to select an option without selecting it tw

[flexcoders] Re: Combo Box Quirk or Bug

2005-07-29 Thread charlespaz1
The bound data array changes, thats why its in a function. It binds properly and works fine EXCEPT for selecting items, which should have nothing to do with the binding of the data as the data is bound properly and listed fine. It just doesn't allow you to select an option without selecting it tw