Wrap the ArrayCollection in <mx:dataProvider> tags.

 

Tracy

 

________________________________

From: [email protected] [mailto:[EMAIL PROTECTED] On
Behalf Of Wally Randall
Sent: Friday, December 01, 2006 2:43 PM
To: [email protected]
Subject: [flexcoders] What is wrong with this component?

 

The following custom component displays the "--select--" value but not 
the contents of the array collection. What is my problem?

<?xml version="1.0" encoding="utf-8"?>
<mx:ComboBox width="100" rowCount="15" 
xmlns:mx="http://www.adobe.com/2006/mxml
<http://www.adobe.com/2006/mxml> "
prompt="--select--">
<mx:ArrayCollection>
<mx:Object label="12:00 AM" data="00"/>
<mx:Object label="01:00 AM" data="01"/>
<mx:Object label="10:00 PM" data="22"/>
<mx:Object label="11:00 PM" data="23"/>
</mx:ArrayCollection>
</mx:ComboBox>

 

Reply via email to