Ext.MessageBox 状态更新

Ext.MessageBox.show({

title: '请稍等...',

msg: '正在处理',

progressText: '文件上传中...',

width:300,

progress:true,

closable:false,

icon:'download',

animEl: 'mb6'

});

Ext.MessageBox.updateProgress(status, Math.round(status* 100)+ '% 完成!', result.message); //调用此进度条时,必须要先定义上面的内容

你可能感兴趣的:(ext)