我可以在 PopupPanel 中使用 GWT 框架小部件吗?

发布于 2024-12-12 08:44:52 字数 457 浏览 2 评论 0原文

我想在 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 技术交流群。

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

发布评论

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

评论(1

天赋异禀 2024-12-19 08:44:52

我使用了另一种方式来实现我的功能,也许框架+弹出不是好方法。我将进一步调查,看看问题出在哪里。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文