节点上带有换行文本的 Flex 树视图

发布于 2024-09-18 20:13:08 字数 204 浏览 4 评论 0原文

我花了几个小时寻找一种将一段文本放入 Adob​​e flex 中的一个树节点中的方法。我该怎么做呢?我创建了一个简单的树视图,但文本在右边框后被剪切。

所以我尝试创建一个树渲染器。在渲染器中,我指定 width=100 并将文本换行。但是节点的高度没有正确计算,因此连续节点上的文本重叠并变得混乱。

那么我该如何在树节点中进行换行文本呢?

谢谢

I've spend hours searching for a way to put one paragraph of text in one tree node in Adobe flex. How can I do it? I created a simple tree view but the text is cut after the right border.

So I tried to create a tree renderer. In the renderer I specified width=100 and the text wrapped. But the height of the nodes was not being calculated properly, so the text over consecutive nodes overlapped and got messed.

So how do i do wrapped text in a tree node?

Thank you

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

溺孤伤于心 2024-09-25 20:13:09

此处 是您的完整解决方案,包括可运行的示例)

黑客位于:

<mx:Tree id="tree"
            dataProvider="{xmlDP}"
            labelField="@label"
            showRoot="false"
            variableRowHeight="true"
            wordWrap="true"
            alternatingItemColors="[#FFFFFF,#EEEEEE]"
            showScrollTips="true"
            width="300"
            rowCount="6" />

here is your full solution, including runnable sample)

the hack is in:

<mx:Tree id="tree"
            dataProvider="{xmlDP}"
            labelField="@label"
            showRoot="false"
            variableRowHeight="true"
            wordWrap="true"
            alternatingItemColors="[#FFFFFF,#EEEEEE]"
            showScrollTips="true"
            width="300"
            rowCount="6" />
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文