我可以在 PopupPanel 中使用 GWT 框架小部件吗?
我想在 PopupPanel 小部件内使用 Frame 小部件,以便在此弹出窗口中我能够从不同的 URL 访问一些信息。
public class MyPopup extends PopupPanel {
public MyPopup() {
super(true);
Frame frame = new Frame();
frame.setUrl("http://google.com");
frame.setWidth("200px");
frame.setHeight("100px");
setWidget(frame);
}
}
当我调试代码时,我注意到框架内的页面实际上已加载,但我没有看到显示的内容。弹出窗口是透明的。
有人有这方面的经验吗?任何帮助将不胜感激。
谢谢。
I'd like to use a Frame widget inside a PopupPanel widget, so that in this popup I'm able to access some information from a different URL.
public class MyPopup extends PopupPanel {
public MyPopup() {
super(true);
Frame frame = new Frame();
frame.setUrl("http://google.com");
frame.setWidth("200px");
frame.setHeight("100px");
setWidget(frame);
}
}
When I debugged the code, I noticed that the page inside the frame was actually loaded, but I didn't see the content shown. The popup was transparent.
Anyone has experience on this? And any help would be appreciated.
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我使用了另一种方式来实现我的功能,也许框架+弹出不是好方法。我将进一步调查,看看问题出在哪里。
I have used another way to implement my feature, maybe frame+popup is not good way. I will investigate further and see what is the problem.