Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / docs / source / msg-box.html
diff --git a/docs/source/msg-box.html b/docs/source/msg-box.html
new file mode 100644 (file)
index 0000000..d093a71
--- /dev/null
@@ -0,0 +1,116 @@
+<html>\r
+<head>\r
+  <title>The source code</title>\r
+    <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
+    <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
+</head>\r
+<body  onload="prettyPrint();">\r
+    <pre class="prettyprint lang-js">Ext.onReady(function(){\r
+    Ext.get('mb1').on('click', function(e){\r
+        Ext.MessageBox.confirm('Confirm', 'Are you sure you want to do that?', showResult);\r
+    });\r
+\r
+    Ext.get('mb2').on('click', function(e){\r
+        Ext.MessageBox.prompt('Name', 'Please enter your name:', showResultText);\r
+    });\r
+\r
+    Ext.get('mb3').on('click', function(e){\r
+        Ext.MessageBox.show({\r
+           title: 'Address',\r
+           msg: 'Please enter your address:',\r
+           width:300,\r
+           buttons: Ext.MessageBox.OKCANCEL,\r
+           multiline: true,\r
+           fn: showResultText,\r
+           animEl: 'mb3'\r
+       });\r
+    });\r
+\r
+    Ext.get('mb4').on('click', function(e){\r
+        Ext.MessageBox.show({\r
+           title:'Save Changes?',\r
+           msg: 'You are closing a tab that has unsaved changes. <br />Would you like to save your changes?',\r
+           buttons: Ext.MessageBox.YESNOCANCEL,\r
+           fn: showResult,\r
+           animEl: 'mb4',\r
+           icon: Ext.MessageBox.QUESTION\r
+       });\r
+    });\r
+\r
+    Ext.get('mb6').on('click', function(){\r
+        Ext.MessageBox.show({\r
+           title: 'Please wait',\r
+           msg: 'Loading items...',\r
+           progressText: 'Initializing...',\r
+           width:300,\r
+           progress:true,\r
+           closable:false,\r
+           animEl: 'mb6'\r
+       });\r
+\r
+       // this hideous block creates the bogus progress\r
+       var f = function(v){\r
+            return function(){\r
+                if(v == 12){\r
+                    Ext.MessageBox.hide();\r
+                    Ext.example.msg('Done', 'Your fake items were loaded!');\r
+                }else{\r
+                    var i = v/11;\r
+                    Ext.MessageBox.updateProgress(i, Math.round(100*i)+'% completed');\r
+                }\r
+           };\r
+       };\r
+       for(var i = 1; i < 13; i++){\r
+           setTimeout(f(i), i*500);\r
+       }\r
+    });\r
+\r
+    Ext.get('mb7').on('click', function(){\r
+        Ext.MessageBox.show({\r
+           msg: 'Saving your data, please wait...',\r
+           progressText: 'Saving...',\r
+           width:300,\r
+           wait:true,\r
+           waitConfig: {interval:200},\r
+           icon:'ext-mb-download', //custom class in msg-box.html\r
+           animEl: 'mb7'\r
+       });\r
+        setTimeout(function(){\r
+            //This simulates a long-running operation like a database save or XHR call.\r
+            //In real code, this would be in a callback function.\r
+            Ext.MessageBox.hide();\r
+            Ext.example.msg('Done', 'Your fake data was saved!');\r
+        }, 8000);\r
+    });\r
+\r
+    Ext.get('mb8').on('click', function(){\r
+        Ext.MessageBox.alert('Status', 'Changes saved successfully.', showResult);\r
+    });\r
+\r
+    //Add these values dynamically so they aren't hard-coded in the html\r
+    Ext.fly('info').dom.value = Ext.MessageBox.INFO;\r
+    Ext.fly('question').dom.value = Ext.MessageBox.QUESTION;\r
+    Ext.fly('warning').dom.value = Ext.MessageBox.WARNING;\r
+    Ext.fly('error').dom.value = Ext.MessageBox.ERROR;\r
+\r
+    Ext.get('mb9').on('click', function(){\r
+        Ext.MessageBox.show({\r
+           title: 'Icon Support',\r
+           msg: 'Here is a message with an icon!',\r
+           buttons: Ext.MessageBox.OK,\r
+           animEl: 'mb9',\r
+           fn: showResult,\r
+           icon: Ext.get('icons').dom.value\r
+       });\r
+    });\r
+\r
+    function showResult(btn){\r
+        Ext.example.msg('Button Click', 'You clicked the {0} button', btn);\r
+    };\r
+\r
+    function showResultText(btn, text){\r
+        Ext.example.msg('Button Click', 'You clicked the {0} button and entered the text "{1}".', btn, text);\r
+    };\r
+});</pre>    \r
+</body>\r
+</html>
\ No newline at end of file