如何从 Ext.grid.Panel 中删除加载动画
就像标题所说,如何从面板上删除旋转轮?
我尝试了属性“loadMask”或“loadingMask”,它似乎适用于旧版本,还有 setLoading() 方法...
编辑:“maskOnDisable”顺便说一下也不起作用。
Like the title says, how can i remove the spinwheel from a Panel?
I tried the property "loadMask" or "loadingMask" which seems to work for older versions and also the setLoading() method...
Edit: 'maskOnDisable' also doesn't work by the way.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用
setLoading
方法来隐藏加载掩码。例如:您可以在 Ext.grid.Panel 文档。在 ExtJS 4 中,加载掩码由 创建和显示Ext.ComponentLoader。
You can use the
setLoading
method to hide the loading mask. For example:You can read the details of this method at Ext.grid.Panel documentation. In ExtJS 4, the loading mask is created and displayed by the Ext.ComponentLoader.
在 Extjs4 上,您可以使用
viewConfig: {loadMask:false}
我希望这对您有用,但如果您使用分页,我建议您不要隐藏掩码。
萨姆.
On Extjs4 you can use
viewConfig: {loadMask:false}
I hope this works for you, but if you are using pagination I recommend that you don't hide the mask.
Sam.