简体   繁体   English

我怎么能在网格面板上徘徊?

[英]how i can window over the gridpanel?

When I reload my grid Ext.StoreMgr.lookup('store').reload(); 当我重新加载我的网格Ext.StoreMgr.lookup('store').reload(); then I want to remove loading icon and loading background because Ext.wndow open then loading background overlap on the window. 然后我想删除加载图标并加载背景,因为Ext.wndow打开然后加载窗口上的背景重叠。 So Please tell me how i will remove it? 那么请告诉我我将如何删除它?

The grid view has a loadMask config you can set. 网格视图有一个你可以设置的loadMask配置。

Ext.create("Ext.grid.Panel", {
    // some config options here...
    viewConfig: {
        // Setting this false should disable the automatic load masking
        loadMask: false
    }
});

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM