Define Label and value separately for ComboBox data binding : ComboBox Data « Components « Flex






Define Label and value separately for ComboBox data binding

Define Label and value separately for ComboBox data binding
       
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:VBox>
        <mx:Script>
            
    
                private var htmlStr1:String = '<b>Header</b>';
                private var textStr1:String = "this is a test";
    
                private function setNewText():void
                {
                    determineTextType(changeText.selectedItem.value.toString());
                }
    
                private function determineTextType(str:String):void
                {
                    var regexp:RegExp = /<.+\w.>/;
                    textArea.text = String(regexp.test(str));
                }
    
          
        </mx:Script>
        <mx:ComboBox id="changeText" dataProvider="{
                    [{label:'HTML1', value:htmlStr1},
                     {label:'Text1', value:textStr1}]}" change="setNewText()"/>
        <mx:TextArea id="textArea" height="100%"/>
    </mx:VBox>
</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.Set data for ComboBox with dataProviderSet data for ComboBox with dataProvider
2.ComboBox and ComboBox and <mx:dataProvider>
3.Use an array of strings as ComboBox data sourceUse an array of strings as ComboBox data source
4.Use remote data providers to supply data to your ComboBox controlUse remote data providers to supply data to your ComboBox control
5.Use child tags to set ComboBox data provider to ArrayCollection objectUse child tags to set ComboBox data provider to ArrayCollection object
6.ComboBox's default property is dataProviderComboBox's default property is dataProvider
7.Add data to ComboBox when click the buttonAdd data to ComboBox when click the button
8.Get data length from ComboBox after removing the first itemGet data length from ComboBox after removing the first item
9.Reset data in ComboBoxReset data in ComboBox
10.Feed data from web service to ComboBox
11.dataProvider for ComboBoxdataProvider for ComboBox
12.Use ComboBox as the Credit card type data sourceUse ComboBox as the Credit card type data source
13.ComboBox with static string array as its data sourceComboBox with static string array as its data source
14.ComboBox data with Multiple propertiesComboBox data with Multiple properties
15.ComboBox data variablesComboBox data variables
16.data provider can contain objects with multiple fieldsdata provider can contain objects with multiple fields
17.Create ComboBox from ModelCreate ComboBox from Model
18.Assign Array to ComboBox and get the length of the added arrayAssign Array to ComboBox and get the length of the added array
19.String array collection for ComboBoxString array collection for ComboBox
20.Object array for ComboBoxObject array for ComboBox
21.ArrayCollection In ComboBoxArrayCollection In ComboBox