Simple ArrayCollection : ArrayCollection « Data Model « Flex






Simple ArrayCollection

            
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical">
  <mx:Script>
    
      import mx.collections.ArrayCollection;
      private var myData:ArrayCollection;
  
  </mx:Script>
  
  <mx:ArrayCollection id="acColors">
    <mx:source>
      <mx:Array>
        <mx:String>Red</mx:String>
        <mx:String>Green</mx:String>
        <mx:String>Blue</mx:String>
      </mx:Array>
    </mx:source>
  </mx:ArrayCollection>
</mx:Application>

   
    
    
    
    
    
    
    
    
    
    
    
  








Related examples in the same category

1.Add element to ArrayCollection and bind to DataGridAdd element to ArrayCollection and bind to DataGrid
2.Define Array object and use it as source for ArrayCollectionDefine Array object and use it as source for ArrayCollection
3.Using an array of components to dispaly ButtonsUsing an array of components to dispaly Buttons
4.Initializing an ArrayCollection using MXML with embedded data
5.ArrayCollection is initialized with ActionScript
6.Using an ArrayCollection to feed the DataGrid's dataProviderUsing an ArrayCollection to feed the DataGrid's dataProvider
7.Using nested data in an ArrayCollection to display hierarchicallyUsing nested data in an ArrayCollection to display hierarchically
8.Filter and refresh function for ArrayCollectionFilter and refresh function for ArrayCollection
9.ArrayCollection data providerArrayCollection data provider
10.Use ActionScript to declare and create the ArrayCollection objectUse ActionScript to declare and create the ArrayCollection object
11.Insertion on the Array and ArrayCollectionInsertion on the Array and ArrayCollection
12.Sort ArrayCollectionSort ArrayCollection
13.Add item to ArrayCollectionAdd item to ArrayCollection
14.Remove item from ArrayCollection by indexRemove item from ArrayCollection by index
15.Update item in ArrayCollectionUpdate item in ArrayCollection
16.ArrayCollection collectionChange eventArrayCollection collectionChange event
17.Create ArrayCollection from ArrayCreate ArrayCollection from Array
18.Use Timer to add data to ArrayCollectionUse Timer to add data to ArrayCollection
19.Put random value to ArrayCollectionPut random value to ArrayCollection
20.Bind ArrayCollection to List and update ArrayCollection to change ListBind ArrayCollection to List and update ArrayCollection to change List
21.Use individual ArrayCollection elements as the source or a binding expressionUse individual ArrayCollection elements as the source or a binding expression
22.Get data from ArrayCollection by label fieldGet data from ArrayCollection by label field
23.Use Model as the source for ArrayCollection
24.Create ArrayCollection from Model with ActionScriptCreate ArrayCollection from Model with ActionScript
25.Get data frolm ArrayCollection by using index and property nameGet data frolm ArrayCollection by using index and property name
26.Using ArrayCollection to handle complex dataUsing ArrayCollection to handle complex data
27.Converting an MXML data model into an ArrayCollectionConverting an MXML data model into an ArrayCollection
28.Add filter to ArrayCollectionAdd filter to ArrayCollection
29.Spark DropDownList with Static String ArrayCollectionSpark DropDownList with Static String ArrayCollection
30.An ArrayCollection object that is populated from a remote data sourceAn ArrayCollection object that is populated from a remote data source
31.Define ArrayCollection Of ObjectsDefine ArrayCollection Of Objects
32.Create an Array, and then converts it to an ArrayCollectionCreate an Array, and then converts it to an ArrayCollection
33.Use an tag to perform the conversionUse an <s:ArrayCollection> tag to perform the conversion
34.Real Time ArrayCollectionReal Time ArrayCollection
35.defines data providers as ArrayCollections.defines data providers as ArrayCollections.
36.Use ArrayCollection to store controlsUse ArrayCollection to store controls
37.A sorted view of a collectionA sorted view of a collection
38.Set item at third position to new valueSet item at third position to new value
39.Result of using insert() and remove() on the current propertyResult of using insert() and remove() on the current property