等待 GWT Composite 可视化
当用户单击菜单条目时,我正在即时创建一个组合(带有我的应用程序“区域”的各种面板),并将其可视化在屏幕的中央面板上。
但是,某些复合材料需要更多的加载时间,我如何才能知道“开始加载”和“完成加载”事件?我的意思是,我可以在创建新面板之前显示旋转器/服务员并在创建后隐藏它吗?
最佳做法是什么?
我想我会尝试 LAZYPANEL。也许它可以帮助我。
I am creating a Composite (various panels with my application 'areas') on-the-fly, when the user clicks on a menu entry, and visualizing it on my central panel in the screen.
However, some Composites takes a little more loading, how can I be aware of the 'start-loading' and 'finished-loading' events? I mean, can I display a spinner/waiter before creating the new panel and hide it after the creation?
What's the best practice?
I think I'll try LAZYPANEL. Maybe it could help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
默认显示加载图片
重写 onLoad()。在 onload 内部初始化并构建组合。在将所有子项添加到合成之前,调用clear() 以删除加载图像。
Display the loading image by default
Override the onLoad(). Inside the onload initialize and build the composite. Just before adding all the children to the composite, call clear() to remove the loading image.