Flex - 图标/图像的上标
我正在研究 ActionScript 3.0 并遇到了一个疑问。我们可以通过 itemRenderer 属性在数据网格的单个单元格中放置 2 个图像。
我想将图标显示为单元格本身中存在的某些文本的上标。
这怎么写呢?请帮帮我。
谢谢。
I am working on ActionScript 3.0 and came across a doubt. We can have 2 images in a single cell of datagrid via itemRenderer property.
I want to show an icon as a superscript to some text present in the cell itself.
How can this be written ? Please help me out.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据问题的标签,我假设您正在使用 Flex 3。在您的自定义项目渲染器中,您需要将
HBox
与verticalAlign="top"
结合使用:如果我误解了任何内容,请包含您想要的代码示例目前有关于您想要添加图标的位置的详细信息。
I assume you're using Flex 3 based on the question's tag. Within your custom item renderer, you'll need to use an
HBox
withverticalAlign="top"
:If I've misunderstood anything, please include a code sample for what you currently have and details on where you want the icon added.