6/19/2010 11:28:41 AM
Title:
Difference between tileLIst,List,tile
Difference between tileLIst, List, and tile.
Kiney
Points: 600
Posts:0
6/19/2010 12:26:38 PM
TileList component in flex is used to display data in tile format, like thumbnails of images etc. The can set the number of tiles in a row if the number exceeds the tiles are added to next row and so on. 10 images in a tilelist with maxColoums 4 will be displayed like this:
o o o o
o o o o
o o
List component is used to display data vertically in a single colum , the data is usually text.
In list 10 Items will be displayed like this
0
0
0
0
0
0
0
0
0
0
6/19/2010 1:46:27 PM
TileList component can display objects in vertical or horizontal direction whereas List displays in the vertical direction only. In TileList you can specify the vertical or horizontal items maximum limit.
The Tile component is container so the components dropped inside Tile container are equally spaced from each other and looks like tiling. Its used for displaying components in a tile kind of display
6/19/2010 1:52:59 PM
TileList : Display items in a tile format like this
1 2 3 4 5
6 7 8 9
or
1 6
2 7
3 8
4 9
5
List displays in list format , single column, Looks like this
1
2
3
4
5
Tile is container and display any flex components inside in tile format. the components will look like this
1 2 3 4 5
6 7 8