What am I missing here? This displays an empty combobox when called as such: <Ctrl:statusComboBox id="te_status" />. It works if I create an inline ComboBox, but I will want to use this same control in multiple locations in my application.
<?xml version="1.0" encoding="utf-8"?> <mx:ComboBox xmlns:mx="http://www.adobe.com/2006/mxml"> <mx:Script> <![CDATA[ [Bindable] public var status:String = ''; ]]> </mx:Script> <mx:ArrayCollection> <mx:String>Reported</mx:String> <mx:String>Assigned</mx:String> <mx:String>Closed</mx:String> </mx:ArrayCollection> </mx:ComboBox> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Download the latest ColdFusion 8 utilities including Report Builder, plug-ins for Eclipse and Dreamweaver updates. http;//www.adobe.com/cfusion/entitlement/index.cfm?e=labs%5adobecf8%5Fbeta Archive: http://www.houseoffusion.com/groups/Flex/message.cfm/messageid:4404 Subscription: http://www.houseoffusion.com/groups/Flex/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37
