I have an associative array that I want to display using TileList. However, it doesn't understand what is being fed to it. All I got is [object] in the TileList.

[bindable]
public var people as array = new array();

private function loadArray():void{
people = decoded JSON array
showPeople.dataProvider = people;}

<mx:Tilelist id="showPeople" labelField="{data.name}" iconField="{data.imgURL}"/>

I tried using the mx:itemRender but it will only render one and only one item, ie either the string of the person's name or the image of the url. The end goal is to have the TileList show a person's picture using the URL from the array along with their name as the label. Any suggestion?

And the array looks like this 'name' => string of a person's name 'img' => string of the img URL

link|improve this question

25% accept rate
What do you mean [object] ? Are you sure it decoded the JSON array correctly? – CookieOfFortune Apr 8 '10 at 2:39
feedback

1 Answer

up vote 0 down vote accepted

You should use a custom item renderer, like this one:

<mx:itemRenderer>
  <mx:Component>
    <mx:HBox>
      <mx:Text width="100" height="100" text="{data.name}"/>
      <mx:Image width="100" height="100" source="{data.imgURL}"/>
    </mx:HBox>
  </mx:Component>
</mx:itemRenderer> 

In this way you can customize your list items as you wish.

link|improve this answer
When I said [Object], I meant literally it showed the words "[Object]" in the panel where the Tilelist resides. Cornel's answered worked perfectly. – MooCow Apr 8 '10 at 16:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.