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

时间:2012-03-22 12:10:51

标签: javascript extjs extjs4

当我重新加载网格时 Ext.StoreMgr.lookup('store').reload(); 然后我想删除加载图标并加载背景,因为Ext.wndow打开然后加载窗口上的背景重叠。 那么请告诉我我将如何删除它?

1 个答案:

答案 0 :(得分:2)

网格视图包含您可以设置的loadMask配置。

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