ext4进度条控制

   Ext.MessageBox.show({
							title : '请等待',
							msg : '文件正在上传中,请稍后...',
							progressText : '正在初始化...',
							width : 300,
							progress : true,
							closable : false
						});
						var f = function(v) {
							return function() {
								if (v == 12) {
									Ext.MessageBox.hide();
									fileUploadWindow.close();
									Ext.Msg.alert('提示信息', '文件上传成功!');
								} else {
									var i = v / 11;
									Ext.MessageBox.updateProgress(i, '已完成'
											+ Math.round(100 * i) + '%');
								}
							};
						};
						for ( var i = 1; i < 13; i++) {
							setTimeout(f(i), i * 500);
						}

你可能感兴趣的:(ext4)