RE: [flexcoders] Filling a TileList with objects from a dataProvider in Flex 1.5

2006-01-26 Thread Rob Rusher
TileList uses a dataProvider and cellrenderers to do what you're trying to do. So you're going to have to add a setValue() to your custom component that assigns the dataProvider data to your component properties. Your TileList will then take the result from your service and set the

Re: [flexcoders] Filling a TileList with objects from a dataProvider in Flex 1.5

2006-01-26 Thread Stanislav Zayarsky
Good Morning, It works, you just need to make dataBinding: HTTPService result -- Repeater dateprovider Sample code: mx:HTTPService id=dataModel / mx:Tileid=myTile mx:Repeater id=items dataProvider={dataModel.result}