Extjs treePanel 加载等待框

Posted hello_史努比

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Extjs treePanel 加载等待框相关的知识,希望对你有一定的参考价值。

beforeload : {
fn : function (store, operation, eOpts){
loadMask = new Ext.LoadMask(Ext.get(this.getEl()),{
msg : ‘数据加载中...‘,
removeMask : true// 完成后移除
}); 
loadMask.show();
}
},
load : {
fn : function(me, node, records, successful, eOpts){
loadMask.hide();
}
}

  

以上是关于Extjs treePanel 加载等待框的主要内容,如果未能解决你的问题,请参考以下文章