Flex iframe 始终显示在顶部
嗨, 我在 Flex 4 中使用 iframe,但它总是显示在顶部。我无法显示工具提示。如何解决这个问题?
请看图片。这里我想要显示按钮的完整工具提示,但它隐藏了一半,因为我需要解决这个问题,如何做到这一点?
Hi,
I am using iframes in flex 4 but it is shows always top.i am not able to show the tooltip.how to solve this?
please look at the picture.Here i wnat to show the full tooltip of the button but it's hide half becouse of the iframe i need to solve this,how to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试减小 iframe 所在的 VBox 的宽度吗
所以你的代码应该是:
编辑1:
我明白了这个问题。
当 iframe 尝试成为窗口中最上面的子级时,就会发生这种情况。
您可以尝试以下操作吗:
1.给定iframe并id='iFrame'
2.为应用程序添加一个creationComplete处理程序
3.在处理程序中,更改此iframe的索引并使其成为最底部的组件。
试试这个。问题应该可以解决。
只需更改相关 VBox 的宽度 % 并再次测试即可。
如果这不能解决问题,请更新
Can you try decreasin the width of the VBox in which the iframe resides
So your code should be:
EDIT1:
I got the issue.
This happens , when the iframe tries to be the topmost child in the window.
Can you try the following:
1.Give Iframe and id='iFrame'
2.Add an creationComplete handler for the application
3.In the handler, change the index of this iframe and make it the bottommost compontent.
Try this.The problem should be solved.
just change the width % of the VBox in question and test again.
Please update if that doesnt solve the issue