如何从GWT Frame对象获取readyState?
我在我的项目中使用 GWT 2.3.0,并且有一个 iframe 和一个加载蒙版。当加载 iframe 内容(更具体地说,内容是 PDF)时,我需要隐藏加载蒙版。
我尝试使用:
Frame frame = new Frame("https://www.example.com.br/example.pdf") {{
addDomHandler(new LoadHandler() {
public void onLoad(LoadEvent event) {
loadingMask.setVisible(false);
}
}, LoadEvent.getType());
}};
由于内容是PDF,它在IE中不起作用。
有没有办法用GWT获取readyState iframe属性?
如果有任何反馈,我将不胜感激。谢谢大家。
I'm using GWT 2.3.0 in my project and I have an iframe and a loading mask. When the iframe content (to be more specific, the content is a PDF) is loaded I need to hide the loading mask.
I tried using:
Frame frame = new Frame("https://www.example.com.br/example.pdf") {{
addDomHandler(new LoadHandler() {
public void onLoad(LoadEvent event) {
loadingMask.setVisible(false);
}
}, LoadEvent.getType());
}};
Because of the content is a PDF, it does not work in IE.
Is there a way to get the readyState iframe property with GWT?
I would appreciate any feedback. Thanks for all.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
获取 ReadyState GWT Frame 属性:
to get the readyState GWT Frame property:
只需重写
Frame
上的onLoad()
方法即可:Just override the
onLoad()
method onFrame
: