2012-03-22 22 views
0

當我重新加載我的網格 Ext.StoreMgr.lookup('store').reload(); 然後我想刪除加載圖標和加載背景,因爲Ext.wndow打開然後加載窗口上的背景重疊。 那麼請告訴我我將如何刪除它?我如何在網格面板上打開窗口?

回答

2

網格視圖有一個loadMask配置您可以設置。

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