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.setLoading( true ) ;
inputShowGrid.setLoading( false ) ;

注释:所有方法是在Extjs4.0的基础上实现,其他版本没有试验。

你可能感兴趣的:(ExtJs,ExtJs,extjs4,loading,4.0,4.0,状态,显示加载状态)