Is it possible to display multiple attributes in a mx:Tree component?
The XML looks like this:
<item comment="blabla" author="user1" date="21.05.2011">
<item comment="blabla" author="user2" date="21.05.2011"/>
<item comment="blabla" author="user3" date="21.05.2011"/>
</item>
I want each node to display the comment, author and date, on separate lines.
I am planning to use this to display something like the facebook wall: someone writes a message and the other users can comment.
Any ideas?
You can use a custom ItemRenderer for this.
Checkout the Adobe livedocs:
http://livedocs.adobe.com/flex/3/html/help.html?content=cellrenderer_8.html
Cheers