3 * Copyright(c) 2006-2009 Ext JS, LLC
5 * http://www.extjs.com/license
7 Ext.onReady(function(){
\r
8 var p = new Ext.Panel({
\r
11 renderTo: 'panel-basic',
\r
13 html: Ext.example.bogusMarkup
\r
16 // preventBodyReset: true
\r
18 title: 'A Panel with W3C-suggested body-html styling',
\r
19 preventBodyReset: true,
\r
20 renderTo: 'panel-reset-true',
\r
25 // preventBodyReset: false
\r
27 title: 'Same panel as above with preventBodyReset: false',
\r
29 renderTo: 'panel-reset-false',
\r
37 '<h1>Heading One</h1>',
\r
38 '<h2>Heading Two</h2>',
\r
39 '<p>This is a paragraph with <strong>STRONG</strong>, <em>EMPHASIS</em> and a <a href="#">Link</a></p>',
\r
42 '<td>Table Column One</td>',
\r
43 '<td>Table Column Two</td>',
\r
47 '<li>Un-ordered List-item One</li>',
\r
48 '<li>Un-ordered List-item One</li>',
\r
51 '<li>Ordered List-item One</li>',
\r
52 '<li>Ordered List-item Two</li>',
\r
54 '<blockquote>This is a blockquote</blockquote>'
\r