Using a TileList : TileList « Container « Flex

Home
Flex
1.Chart
2.Components
3.Container
4.Data Model
5.Development
6.Effects
7.Event
8.Graphics
9.Grid
10.Style
Flex » Container » TileListScreenshots 
Using a TileList
Using a TileList
  
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml">
    <mx:Script>
        
        import mx.collections.ArrayCollection;
        [Bindable]
        public var myAC:ArrayCollection = new ArrayCollection([
            {name:"A", email:"[email protected]",url:"http://www.a.com"},
            {name:"B", email:"[email protected]",url:"http://www.b.com"},
            {name:"C", email:"[email protected]",url:"http://www.c.com"}
        ]);
      
    </mx:Script>
    <mx:TileList id="myFriends" dataProvider="{myAC}" labelField="name" />
</mx:Application>

   
    
  
Related examples in the same category
1.Set data for a TileList controlSet data for a TileList control
2.TileList DataProviderTileList DataProvider
3.Tile List Custom Effect and Default EffectTile List Custom Effect and Default Effect
w___w___w.__j__a_va__2__s.c_o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.