Upgrade to ExtJS 3.0.0 - Released 07/06/2009
[extjs.git] / examples / panel / panels.js
index 8e9a461..fd970f4 100644 (file)
@@ -1,17 +1,55 @@
-/*\r
- * Ext JS Library 2.2.1\r
- * Copyright(c) 2006-2009, Ext JS, LLC.\r
- * licensing@extjs.com\r
- * \r
- * http://extjs.com/license\r
- */\r
-\r
+/*!
+ * Ext JS Library 3.0.0
+ * Copyright(c) 2006-2009 Ext JS, LLC
+ * licensing@extjs.com
+ * http://www.extjs.com/license
+ */
 Ext.onReady(function(){\r
     var p = new Ext.Panel({\r
         title: 'My Panel',\r
         collapsible:true,\r
 Ext.onReady(function(){\r
     var p = new Ext.Panel({\r
         title: 'My Panel',\r
         collapsible:true,\r
-        renderTo: 'container',\r
+        renderTo: 'panel-basic',\r
         width:400,\r
         html: Ext.example.bogusMarkup\r
     });\r
         width:400,\r
         html: Ext.example.bogusMarkup\r
     });\r
-});
\ No newline at end of file
+\r
+       // preventBodyReset: true\r
+       new Ext.Panel({\r
+               title: 'A Panel with W3C-suggested body-html styling',\r
+               preventBodyReset: true,\r
+               renderTo: 'panel-reset-true',\r
+               width: 400,\r
+               html: html.join('')\r
+       });\r
+\r
+       // preventBodyReset: false\r
+       new Ext.Panel({\r
+               title: 'Same panel as above with preventBodyReset: false',\r
+               normal: false,\r
+               renderTo: 'panel-reset-false',\r
+               width: 400,\r
+               html: html.join('')\r
+       });\r
+});\r
+\r
+// Some sample html\r
+var html = [\r
+       '<h1>Heading One</h1>',\r
+       '<h2>Heading Two</h2>',\r
+       '<p>This is a paragraph with <strong>STRONG</strong>, <em>EMPHASIS</em> and a <a href="#">Link</a></p>',\r
+       '<table>',\r
+               '<tr>',\r
+                       '<td>Table Column One</td>',\r
+                       '<td>Table Column Two</td>',\r
+               '</tr>',\r
+       '</table>',\r
+       '<ul>',\r
+               '<li>Un-ordered List-item One</li>',\r
+               '<li>Un-ordered List-item One</li>',\r
+       '</ul>',\r
+       '<ol>',\r
+               '<li>Ordered List-item One</li>',\r
+               '<li>Ordered List-item Two</li>',\r
+       '</ol>',\r
+       '<blockquote>This is a blockquote</blockquote>'\r
+];
\ No newline at end of file