Use static string list as data for List : List Data « Components « Flex






Use static string list as data for List

Use static string list as data for List
     

<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:List variableRowHeight="true" wordWrap="true" width="220"
        height="200">
        <mx:dataProvider>
            <mx:String>A</mx:String>
            <mx:String>B</mx:String>
            <mx:String>C</mx:String>
        </mx:dataProvider>
    </mx:List>
</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.Fill Array of Object into ListFill Array of Object into List
3.Embedded Object Array into ListEmbedded Object Array into List
4.List with string array collectionList with string array collection
5.Bind Array to List and change Array to update the ListBind Array to List and change Array to update the List
6.List With Hard Coded ArrayList With Hard Coded Array
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