GWT 中的文档就绪事件解决方案
处理所有小部件首次显示并最终在 GWT 中调整大小的时刻的最佳方法是什么?我只需要处理准备好的 GWT 部分,而不是准备好的整个文档......
What is the best way to handle the moment when all widgets are first shown and finally sized in GWT? I need to handle only GWT part ready, not entire document ready...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 Scheduler.scheduleFinally 或 Scheduler.scheduleEntry 函数。它们在事件循环的末尾运行。
另请查看有关延迟逻辑的 gogole 文档
You can use either Scheduler.scheduleFinally or the Scheduler.scheduleEntry function. They are run at the end of the event loop.
Also check out the gogole documentation on delayed logic