轉:extjs 添加loading狀態的三種解決辦法:

extjs 添加loading狀態的三種解決辦法:
方法一:
//materialGrid 指須要顯示loading狀態的控件id
var o=Ext.getCmp('materialGrid');
//顯示屏蔽加載狀態,內容爲‘正在生成文件...’
o.el.mask('正在生成文件...', 'x-mask-loading');
//中止顯示
o.el.unmask();
方法二:
myMask = new Ext.LoadMask(inputShowGrid, {msg:"loading..."});
myMask.show();//顯示
myMask.hide();//隱藏
 
方法三:
      // inputShowGrid是Grid表格對象, 能夠在store的beforeload事件中顯示loading,load事件中隱藏loading
inputShowGrid.setLoading( true ) ;
inputShowGrid.setLoading( false ) ;
 
註釋:全部方法是在Extjs4.0的基礎上實現,其餘版本沒有試驗。
相關文章
相關標籤/搜索