I have problems setting load mask on panel properly. After click on a button the new tree store is being generated (localy) and it takes quite some time. The load mask shows for a millisecond only after (i think) the whole function evaluates. In my code console.log(0)
and console.log(1)
shows after the whole function processes, the button alone freezes for couple of seconds then unfreezes and after that console shows 0 and 1
. What is the proper way to handle this kind of situations. Here is the code:
Button definition:
xtype:'button',
text:'Rozdziel dzia?ki',
iconCls:'icon-map_link',
scope:this,
handler:function(){
console.log(0);
this.splitParcels();
}
Split Parcels function:-
splitParcels:function(){
var mask = new Ext.LoadMask(Ext.getBody(), {msg:"Please wait..."});
mask.show();
console.log(1);
this.mgstore.getRootNode().removeAll();
console.log(this.response);
var root_node = this.mgstore.getRootNode();
Ext.each(this.response.plans, function(plan){
var plan_obj = {
id:plan.plan.id,
text:plan.plan.abbreviation,
gsip_plan:plan,
gsip_type:'plan',
iconCls:'icon-map',
expanded:true,
leaf:false
};
Ext.each(plan.parcels, function(parcel){
var parcel_obj = {
id:parcel.parcel.id,
text:parcel.parcel.name,
leaf:true,
gsip_plan:plan,
gsip_parcels:parcel,
gsip_type:'parcel',
iconCls:'icon-vector'
};
var planNode = root_node.appendChild(plan_obj);
planNode.appendChild(parcel_obj);
});
});
if (mask != undefined) mask.hide();
}
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…