Will.
On 6/6/06, Ranadheer Reddy <
[EMAIL PROTECTED]> wrote:
Hisimple example of the combobox given below :<?xml version="1.0"?> <mx:Application xmlns:mx=" http://www.adobe.com/2006/mxml"> <mx:Script> <![CDATA[ [Bindable] public var cards: Array = [ {label:"Hyperion", data:1}, {label:"August technologies", data:2}, {label:"VoIP Services", data:3} ]; [Bindable] public var selectedItem:Object; ]]> </mx:Script> <mx:Panel title="ComboBox Control Example" height="75%" width="75%" paddingTop="10" paddingLeft="10"> <mx:HBox> <mx:ComboBox dataProvider="{cards}" width="150" change="selectedItem=ComboBox(event.target).selectedItem"/> <mx:VBox width="250"> <mx:Text text="Select a type of CreditCard."
width="200"/> <mx:Label text="You selected: {selectedItem.label}"/> <mx:Label text="Data: {selectedItem.data}"/> </mx:VBox> </mx:HBox> </mx:Panel> </mx:Application>regardsJoshi PattabhiHyperion Technologies (Flex Team)
willmorganuk < [EMAIL PROTECTED]> wrote:Hi All,
Any idea how I can add the usual "Select An Item" as the first label
to a comboBox? The labels are from a webservice and I'm using
lableField="GAL_NAME" so there isn't one available to me. How do I add
that into the dataProvider?
Any help appreciated. Thanks, Will.
__._,_.___
--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com
![]()
SPONSORED LINKS
Web site design development Computer software development Software design and development Macromedia flex Software development best practice
YAHOO! GROUPS LINKS
- Visit your group "flexcoders" on the web.
- To unsubscribe from this group, send an email to:
[EMAIL PROTECTED]
- Your use of Yahoo! Groups is subject to the Yahoo! Terms of Service.
__,_._,___
- Re: [flexcoders] ComboBox default label. Ranadheer Reddy
- Re: [flexcoders] ComboBox default label. Will Morgan
- RE: [flexcoders] ComboBox default label. Peter Watson
- Re: [flexcoders] ComboBox default label. Will Morgan
Reply via email to

