Javascript 我怎样才能在网格面板上打开窗口?

Javascript 我怎样才能在网格面板上打开窗口?,javascript,extjs,extjs4,Javascript,Extjs,Extjs4,当我重新加载网格时 Ext.StoreMgr.lookup('store').reload() 然后我想删除加载图标和加载背景,因为Ext.wndowopen然后加载背景重叠在窗口上。 因此,请告诉我如何删除它?网格视图有一个加载掩码配置,您可以进行设置 Ext.create("Ext.grid.Panel", { // some config options here... viewConfig: { // Setting this false should d

当我重新加载网格时
Ext.StoreMgr.lookup('store').reload()
然后我想删除加载图标和加载背景,因为
Ext.wndow
open然后加载背景重叠在窗口上。
因此,请告诉我如何删除它?

网格视图有一个
加载掩码
配置,您可以进行设置

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