-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathbox-multiline.html
38 lines (37 loc) · 1.33 KB
/
box-multiline.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<!DOCTYPE html>
<html>
<head>
<link href="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/classic/theme-classic/resources/theme-classic-all.css" rel="stylesheet" />
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/extjs/6.0.0/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, // ok or cancel
multiline: true, // 允许多行输入
fn: callbackFunction
});
function callbackFunction (btn,text){
console.log(btn) // ok or cancel
console.log(text) // 输入内容
// 可自行写业务
Ext.Msg.alert('status', 'Details entered succesfully');
}
}
}
});
});
</script>
</head>
<body>
<p> Click the button for alert box </p>
<div id = "msgBox" ></div>
</body>
</html>