好的我有一个Combo
Box,dataProvider是一个具有label
属性的对象数组,它为Combo
Box提供了选项列表.
有没有办法让我可以拥有像mySelectedItem这样的变量,并将ComboBox的selectedItem绑定到它,这样如果它发生变化,ComboBox的selectedItem将会改变为它是什么?
我希望这是有道理的.
谢谢!
是的,Combo
Box的selectedItem
属性是可绑定的.
它会是这样的:
<mx:ComboBox selectedItem="{mySelectedItem}">
</mx:ComboBox>
在你的AS:
[Bindable]
var mySelectedItem:Object;
对mySelectedItem的更改应显示在ComboBox中.如果mybolectedItem引用的项在ComboBox的dataProvider中不存在,则可能会出错.
原文链接:https://www.f2er.com/flex/174235.html