Use IList : IList « Data Model « Flex






Use IList

Use IList
          
<!--
Code from Flex 4 Documentation "Using Adobe Flex 4".

This user guide is licensed for use under the terms of the Creative Commons Attribution 
Non-Commercial 3.0 License. 

This License allows users to copy, distribute, and transmit the user guide for noncommercial 
purposes only so long as 
  (1) proper attribution to Adobe is given as the owner of the user guide; and 
  (2) any reuse or distribution of the user guide contains a notice that use of the user guide is governed by these terms. 
The best way to provide notice is to include the following link. 
To view a copy of this license, visit http://creativecommons.org/licenses/by-nc-sa/3.0/

-->

<!-- dpcontrols\UseIList.mxml -->
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009"
    xmlns:s="library://ns.adobe.com/flex/spark"
    xmlns:mx="library://ns.adobe.com/flex/mx" initialize="initData();">
    <s:layout>
        <s:VerticalLayout />
    </s:layout>
    <fx:Script>
         
        import mx.collections.*; 
        // The data provider is an Array of Strings 
        public var myArray:Array = ["AZ", "MA", "MZ", "MN", "MO", "MS"]; 
        // Declare an ArrayList that represents the Array. 
        [Bindable] 
        public var myAL:ArrayList; 
        //Initialize the ArrayList. 
        public function initData():void { 
            myAL = new ArrayList(myArray); 
        } 
        // The function to change the collection, and therefore 
        // the Array. 
        public function changeCollection():void { 
            // Get the original collection length. 
            var oldLength:int=myAL.length; 
            // Remove the invalid first item, AZ. 
            var removedItem:String=String(myAL.removeItemAt(0)); 
            // Add ME as the second item. (ILists used 0-based indexing.) 
            myAL.addItemAt("ME", 1); 
            // Add MT at the end of the Array and collection. 
            myAL.addItem("MT"); 
            // Change the third item from MZ to MI. 
            myAL.setItemAt("MI", 2); 
            // Get the updated collection length. 
            var newLength:int=myAL.length; 
            // Get the index of the item with the value ME. 
            var addedItemIndex:int=myAL.getItemIndex("ME"); 
            // Get the fifth item in the collection. 
            var index4Item:String=String(myAL.getItemAt(4)); 
            // Display the information in the TextArea control. 
            ta1.text="Start Length: " + oldLength + ". New Length: " + newLength; 
            ta1.text+=".\nRemoved " + removedItem; 
            ta1.text+=".\nAdded ME at index " + addedItemIndex; 
            ta1.text+=".\nThe item at index 4 is " + index4Item + "."; 
            // Show that the base Array has been changed. 
            ta1.text+="\nThe base Array is: " + myArray.join(); 
        } 
      
    </fx:Script>
    <s:ComboBox id="myCB" dataProvider="{myAL}" />
    <s:TextArea id="ta1" height="75" width="300" />
    <s:Button label="rearrange list" click="changeCollection();" />
</s:Application>

   
    
    
    
    
    
    
    
    
    
  








Related examples in the same category