Bind ComboBox and TextInput and Text : ComboBox « Components « Flex






Bind ComboBox and TextInput and Text

Bind ComboBox and TextInput and Text
        

<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Script>
        
            [Bindable]
            private var bindableText:String = "";

            private function setText():void
            {
                bindableText = String(cb.selectedItem);
            }
      
    </mx:Script>

    <mx:VBox>
        <mx:ComboBox id="cb" dataProvider="{['A', 'B', 'C', 'D']}" change="setText()"/>
        <mx:TextInput id="inputFromCB" width="200" text="{bindableText}"/>
        <mx:Text id="textFromCB" width="200" text="{inputFromCB.text}"/>

    </mx:VBox>    
</mx:Application>

   
    
    
    
    
    
    
    
  








Related examples in the same category

1.ComboBox open/close easing functionComboBox open/close easing function
2.Create ComboBox with static objectsCreate ComboBox with static objects
3.Populating a ComboBox control using variablesPopulating a ComboBox control using variables
4.ComboBox-based custom componentComboBox-based custom component
5.extends the standard ComboBox control to initialize itextends the standard ComboBox control to initialize it
6.Sort ComboBox
7.Insert value to ComboBox through CursorInsert value to ComboBox through Cursor
8.Set row count for ComboBoxSet row count for ComboBox
9.Use labelFunction to provide label text for ComboBoxUse labelFunction to provide label text for ComboBox
10.Bind Image source to ComboBox
11.Pass in parameter from ComboBox to WebServicePass in parameter from ComboBox to WebService
12.Editable ComboBoxEditable ComboBox
13.Static ComboBoxStatic ComboBox
14.ComboBox with static String valuesComboBox with static String values
15.Simple ComboBoxSimple ComboBox
16.ComboBox component supports a closeEasingFunction style property.ComboBox component supports a closeEasingFunction style property.
17.Uses the bound propertyUses the bound property
18.Set a labelFunction for a ControlSet a labelFunction for a Control