GWT 打开站点/html?
在GWT MenuBar/MenuItem中,如何在另一个面板中打开page/html文件。就像当你设置目标时
虽然这应该是在Java代码中...
提前致谢 问候 基督教
In GWT MenuBar/MenuItem, how do you open a page/html file in another panel. Like when you set the target in
Though this should be in Java code...
Thanks in advance
Regards
Chrsitian
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定你在另一个面板中打开内容是什么意思。您是指在另一个选项卡中还是在 HTML 面板的一部分中?
GWT 有一个 Window.open() 方法,其操作方式与 javascript 等效。通过指定正确的 url、目标名称和功能,您可以要求浏览器在适当的位置打开某些内容。
I'm not sure what you mean by opening things in another panel. Do you mean in another tab or part of an HTML panel?
GWT has a Window.open() method that operates close to the javascript equivalent. By specifying the correct url, target name, and features, you can ask the browser to open something in the appropriate location.
我通过使用 HTML Widget 解决了这个问题 - 并且只是调用
HTMLWidget.setHTML(myResourceFile.getHTML());
从 MenuItem 命令执行()
快乐 GWT'ing
I solved this by using the HTML Widget - and just called
HTMLWidget.setHTML(myResourceFile.getHTML());
From the MenuItem command execute()
Happy GWT'ing