Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / message-box / msg-box.html
1 <!doctype html>
2 <html>
3 <head>
4 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
5 <title>MessageBox</title>
6 <style type="text/css">
7 .x-message-box .ext-mb-download {
8     background: url("images/download.gif") no-repeat scroll 6px 0px transparent;
9     height: 52px!important;
10 }
11 </style>
12 <link rel="stylesheet" type="text/css" href="../../resources/css/ext-all.css" />
13 <link rel="stylesheet" type="text/css" href="../shared/example.css" />
14 <script type="text/javascript" src="../../bootstrap.js"></script>
15 <script type="text/javascript" src="../shared/examples.js"></script>
16 <script src="msg-box.js"></script>
17 </head>
18 <body>
19 <h1>MessageBox Dialogs</h1>
20 <p>The example shows how to use the MessageBox class. Some of the buttons have animations, some are normal.</p>
21 <p>The js is not minified so it is readable. See <a href="msg-box.js">msg-box.js</a>.</p>
22
23 <p>
24     <b>Confirm</b><br />
25     Standard Yes/No dialog. &nbsp;
26     <button id="mb1">Show</button>
27 </p>
28
29 <p>
30     <b>Prompt</b><br />
31     Standard prompt dialog. &nbsp;
32     <button id="mb2">Show</button>
33 </p>
34
35 <p>
36     <b>Multi-line Prompt</b><br />
37     A multi-line prompt dialog. &nbsp;
38     <button id="mb3">Show</button>
39 </p>
40
41 <p>
42     <b>Yes/No/Cancel</b><br />
43     Standard Yes/No/Cancel dialog. &nbsp;
44     <button id="mb4">Show</button>
45 </p>
46
47 <p>
48     <b>Progress Dialog</b><br />
49     Dialog with measured progress bar. &nbsp;
50     <button id="mb6">Show</button>
51 </p>
52
53 <p>
54     <b>Wait Dialog</b><br />
55     Dialog with indefinite progress bar and custom icon (will close after 8 sec). &nbsp;
56     <button id="mb7">Show</button>
57 </p>
58
59 <p>
60     <b>Alert</b><br />
61     Standard alert message dialog. &nbsp;
62     <button id="mb8">Show</button>
63 </p>
64
65 <p>
66     <b>Icons</b><br />
67     Standard alert with optional icon. &nbsp;
68     <select id="icons">
69         <option id="error" selected="selected">Error</option>
70         <option id="info">Informational</option>
71         <option id="question">Question</option>
72         <option id="warning">Warning</option>
73     </select> &nbsp;
74     <button id="mb9">Show</button>
75 </p>
76 </body>
77 </html>