這也像提示框,但它允許用戶輸入多線信息,而不只是一行。
這里是簡單的語法。
Ext.MessageBox.show({
title: 'Details',
msg: 'Please enter your details:',
width:300,
buttons: Ext.MessageBox.OKCANCEL,
multiline: true, // this property is for multiline user input.
fn: callbackFunction
});
下面是一個簡單的例子顯示用法。
<!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() {
Ext.create('Ext.Button', {
renderTo: Ext.getElementById('msgBox'),
text: 'Click Me',
listeners: {
click: function() {
Ext.MessageBox.show({
title: 'Details',
msg: 'Please enter your details:',
width:300,
buttons: Ext.MessageBox.OKCANCEL,
multiline: true,
fn: callbackFunction
});
function callbackFunction (){
Ext.Msg.alert('status', 'Details entered succesfully');
}
}
}
});
});
</script>
</head>
<body>
<p> Click the button for alert box </p>
<div id = "msgBox" ></div>
</body>
</html>
這將產(chǎn)生以下結(jié)果 :
更多建議: