進(jìn)度條:這用于顯示完成的工作的進(jìn)度,并顯示后端工作仍在進(jìn)行中,所以請(qǐng)等待,直到完成。
它基本上是一個(gè)消息框,顯示任務(wù)的進(jìn)度。 下面是創(chuàng)建進(jìn)度條的簡(jiǎn)單語法。
Ext.MessageBox.show({
title: 'Please wait',
msg: 'Loading items...',
progressText: 'Initializing...',
width:300,
progress:true,
closable:false
});
下面是一個(gè)簡(jiǎn)單的例子顯示進(jìn)度條:
<!DOCTYPE html>
<html>
<head>
<link href="./ext-6.0.0/build/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet">
<script src="./ext-6.0.0/build/ext-all.js"></script>
<script type="text/javascript">
Ext.onReady(function() {
function progressBar(v) {
return function() {
if(v == 10) {
Ext.MessageBox.hide();
result();
} else {
var i = v/9;
Ext.MessageBox.updateProgress(i, Math.round(100*i)+'% completed');
}
};
};
function showProgressBar() {
for(var i = 1; i < 11; i++){
setTimeout(progressBar(i), i*500);
}
}
function result(){
Ext.Msg.alert('status', 'Process completed succesfully');
}
Ext.create('Ext.Button', {
renderTo: Ext.getElementById('buttonId'),
text: 'Click Me',
listeners: {
click: function() {
Ext.MessageBox.show({
title: 'Please wait',
msg: 'Loading items...',
progressText: 'Initializing...',
width:300,
progress:true,
closable:false
});
showProgressBar();
}
}
});
});
</script>
</head>
<body>
<p> Click the button to see progress bar </p>
<div id = "buttonId"></div>
</body>
</html>
這將產(chǎn)生以下結(jié)果
更多建議: