Fill Array of Object into List : List Data « Components « Flex






Fill Array of Object into List

Fill Array of Object into List
     
<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
    <mx:Array id="authors">
        <mx:Object label="A"/>
        <mx:Object label="B"/>
        <mx:Object label="C"/>
        <mx:Object label="D"/>
        <mx:Object label="E"/>
        <mx:Object label="F"/>
        <mx:Object label="G"/>
        <mx:Object label="H"/>
    </mx:Array>
    <mx:List id="authorList" x="150" y="50" width="20%" dataProvider="{authors}"/>
</mx:Application>

   
    
    
    
    
  








Related examples in the same category

1.Using an ArrayCollection to drive the display of a List componentUsing an ArrayCollection to drive the display of a List component
2.Embedded Object Array into ListEmbedded Object Array into List
3.List with string array collectionList with string array collection
4.Bind Array to List and change Array to update the ListBind Array to List and change Array to update the List
5.List With Hard Coded ArrayList With Hard Coded Array
6.Use static string list as data for ListUse static string list as data for List
7.List component that displays icons specified in the dataList component that displays icons specified in the data
8.List with dataProviderList with dataProvider
9.Two List definitions with and without dataProvider tagTwo List definitions with and without dataProvider tag
10.Lists of Complex DataLists of Complex Data
11.List cell editor data fieldList cell editor data field
12.A List control that displays data items represented by String dataA List control that displays data items represented by String data
13.Spark List without data providerSpark List without data provider
14.A List control where each data item is represented by an Object with three fieldsA List control where each data item is represented by an Object with three fields
15.List DataProviderList DataProvider
16.HorizontalList DataProviderHorizontalList DataProvider