在 mx:Tree 中显示多个属性
是否可以在 mx:Tree 组件中显示多个属性? XML 如下所示:
<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>
我希望每个节点在单独的行上显示评论、作者和日期。
我计划用它来显示类似 Facebook 墙的东西:有人写一条消息,其他用户可以发表评论。
有什么想法吗?
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?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以为此使用自定义 ItemRenderer。
查看 Adobe 实时文档:
http://livedocs.adobe.com/flex/ 3/html/help.html?content=cellrenderer_8.html
干杯
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
如果您同意同一行上的所有属性,您还可以使用 labelFunction:
有关另一个示例,请参阅:
http: //blog.flexexamples.com/2007/10/29/defining-a-custom-label-function-on-a-flex-tree-control/
If you were ok with all of the attributes on the same line, you could also use the labelFunction:
For another example, see:
http://blog.flexexamples.com/2007/10/29/defining-a-custom-label-function-on-a-flex-tree-control/