Get Item index for a ComboBox : ComboBox Item « Components « Flex






Get Item index for a ComboBox

Get Item index for 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 addedItemIndex:int=myAC.getItemIndex("B");
            
            ta1.text =String(addedItemIndex);
        }
      
    </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.Add Item to second position in a ComboBoxAdd Item to second position in a ComboBox
4.Add item to a ComboBoxAdd item to a ComboBox
5.Sort ComboBox itemsSort ComboBox items
6.ComboBox form itemComboBox form item