Or you can use modal MessageBox to achieve the same:
Ext.MessageBox.show({
title: 'Please wait',
msg: 'Loading...',
progressText: 'Loading...',
width:300,
wait: true,
waitConfig: {interval: 200},
progress:true,
closable:false,
modal: true
});
When done, just call the following:
Ext.MessageBox.hide();
source
share