blob: fe431afab5b9bbc9c16301f0d31873f99dc4dd4d [file] [log] [blame]
<s:ComboBox
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:mx="library://ns.adobe.com/flex/mx"
xmlns:s="library://ns.adobe.com/flex/spark"
height="24" width="147"
labelField="fruit"
dataProvider="{labelDP}">
<fx:Script>
<![CDATA[
import mx.collections.ArrayCollection;
[Bindable]
public var labelDP:ArrayCollection = new ArrayCollection(
[ {fruit:"Apple", price:0.25},
{fruit:"Pear", price:0.5},
{fruit:"Orange", price:0.75},
{fruit:"Plum", price:0.85}
]);
]]>
</fx:Script>
</s:ComboBox>