Add item to a ComboBox : ComboBox Item « Components « Flex






Add item to a ComboBox

Add item to a ComboBox
       
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"
    initialize="initData()">
    <mx:Script>
        
        import mx.collections.*;
        public var myArray:Array = ["A", "B", "C", "D", "E", "F"];
        
        [Bindable]
        public var myAC:ArrayCollection;
        public function initData():void {
            myAC = new ArrayCollection(myArray);
        }
        public function changeCollection():void {
            var index4Item:String=String(myAC.getItemAt(4));
            myAC.addItem("W");
           
        }
      
    </mx:Script>
    <mx:ComboBox id="myCB" rowCount="7" dataProvider="{myAC}" />
    <mx:TextArea id="ta1" height="75" width="300" />
    <mx:Button label="rearrange list" click="changeCollection();" />
</mx:Application>

   
    
    
    
    
    
    
  








Related examples in the same category

1.ComboBox prepopulated with list itemsComboBox prepopulated with list items
2.Remove item at 0 position from a ComboBoxRemove item at 0 position from a ComboBox
3.Get Item index for a ComboBoxGet Item index for a ComboBox
4.Add Item to second position in a ComboBoxAdd Item to second position in a ComboBox
5.Sort ComboBox itemsSort ComboBox items
6.ComboBox form itemComboBox form item