0
我顯示警報消息框:MessageBox並且Loadmask
Ext.Msg.alert("Timezone difference","Please keep in mind that data is displayed server time zone, which differs by "+mins+" minutes from your local time.");
並在後臺,我使用的是loadmask加載數據:
mystore.on('beforeload',function() {
Ext.MessageBox.show({
msg: "Loading data",
width:300,
wait:true,
waitConfig:25
});
});
的問題是,在MessageBox時關閉loadmask被打開。
我發現沒有配置選項來保持它打開。可能嗎?