如何从 Ext.grid.Panel 中删除加载动画

发布于 2024-11-09 12:28:10 字数 135 浏览 0 评论 0原文

就像标题所说,如何从面板上删除旋转轮?

我尝试了属性“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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

零崎曲识 2024-11-16 12:28:10

您可以使用setLoading方法来隐藏加载掩码。例如:

gridPanel.setLoading(false,false);

您可以在 Ext.grid.Panel 文档。在 ExtJS 4 中,加载掩码由 创建和显示Ext.ComponentLoader

You can use the setLoading method to hide the loading mask. For example:

gridPanel.setLoading(false,false);

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.

作妖 2024-11-16 12:28:10

在 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文