Uses the bound property : ComboBox « Components « Flex
- Flex
- Components
- ComboBox
Uses the bound property

<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
backgroundColor="white">
<mx:ComboBox dataProvider="{useThisData}">
<mx:Script>
import mx.collections.ArrayCollection;
[Bindable]
public var useThisData:ArrayCollection;
</mx:Script>
</mx:ComboBox>
</mx:Application>
Related examples in the same category