当我重新加载网格时
Ext.StoreMgr.lookup('store').reload();
然后我想删除加载图标并加载背景,因为Ext.wndow
打开然后加载窗口上的背景重叠。
那么请告诉我我将如何删除它?
答案 0 :(得分:2)
网格视图包含您可以设置的loadMask
配置。
Ext.create("Ext.grid.Panel", {
// some config options here...
viewConfig: {
// Setting this false should disable the automatic load masking
loadMask: false
}
});