kantha.exe
2 Jul 2012, 8:21 PM
How can put Wait Message for Chart while Loading....?
Is there any Listener for that ...?
I put LoadMask onLoad of Store not working.......
scottmartin
5 Jul 2012, 2:56 PM
Use our column example:
var myMask = new Ext.LoadMask(chart, {msg:"Please wait..."});
..
text: 'Reload Data',
handler: function() {
myMask.show();
store1.loadData(generateData());
// slow down hide, too fast if not.
setTimeout(function(){
myMask.hide();
},200);
}
Regards,
Scott.
Powered by vBulletin® Version 4.1.5 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.