Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / Panel.html
1 <html>\r
2 <head>\r
3   <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />    \r
4   <title>The source code</title>\r
5     <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />\r
6     <script type="text/javascript" src="../resources/prettify/prettify.js"></script>\r
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="cls-Ext.Panel"></div>/**
10  * @class Ext.Panel
11  * @extends Ext.Container
12  * <p>Panel is a container that has specific functionality and structural components that make
13  * it the perfect building block for application-oriented user interfaces.</p>
14  * <p>Panels are, by virtue of their inheritance from {@link Ext.Container}, capable
15  * of being configured with a {@link Ext.Container#layout layout}, and containing child Components.</p>
16  * <p>When either specifying child {@link Ext.Component#items items} of a Panel, or dynamically {@link Ext.Container#add adding} Components
17  * to a Panel, remember to consider how you wish the Panel to arrange those child elements, and whether
18  * those child elements need to be sized using one of Ext's built-in <code><b>{@link Ext.Container#layout layout}</b></code> schemes. By
19  * default, Panels use the {@link Ext.layout.ContainerLayout ContainerLayout} scheme. This simply renders
20  * child components, appending them one after the other inside the Container, and <b>does not apply any sizing</b>
21  * at all.</p>
22  * <p>A Panel may also contain {@link #bbar bottom} and {@link #tbar top} toolbars, along with separate
23  * {@link #header}, {@link #footer} and {@link #body} sections (see {@link #frame} for additional
24  * information).</p>
25  * <p>Panel also provides built-in {@link #collapsible expandable and collapsible behavior}, along with
26  * a variety of {@link #tools prebuilt tool buttons} that can be wired up to provide other customized
27  * behavior.  Panels can be easily dropped into any {@link Ext.Container Container} or layout, and the
28  * layout and rendering pipeline is {@link Ext.Container#add completely managed by the framework}.</p>
29  * @constructor
30  * @param {Object} config The config object
31  * @xtype panel
32  */
33 Ext.Panel = Ext.extend(Ext.Container, {
34     <div id="prop-Ext.Panel-header"></div>/**
35      * The Panel's header {@link Ext.Element Element}. Read-only.
36      * <p>This Element is used to house the {@link #title} and {@link #tools}</p>
37      * <br><p><b>Note</b>: see the Note for <code>{@link Ext.Component#el el}</code> also.</p>
38      * @type Ext.Element
39      * @property header
40      */
41     <div id="prop-Ext.Panel-body"></div>/**
42      * The Panel's body {@link Ext.Element Element} which may be used to contain HTML content.
43      * The content may be specified in the {@link #html} config, or it may be loaded using the
44      * {@link autoLoad} config, or through the Panel's {@link #getUpdater Updater}. Read-only.
45      * <p>If this is used to load visible HTML elements in either way, then
46      * the Panel may not be used as a Layout for hosting nested Panels.</p>
47      * <p>If this Panel is intended to be used as the host of a Layout (See {@link #layout}
48      * then the body Element must not be loaded or changed - it is under the control
49      * of the Panel's Layout.
50      * <br><p><b>Note</b>: see the Note for <code>{@link Ext.Component#el el}</code> also.</p>
51      * @type Ext.Element
52      * @property body
53      */
54     <div id="prop-Ext.Panel-bwrap"></div>/**
55      * The Panel's bwrap {@link Ext.Element Element} used to contain other Panel elements
56      * (tbar, body, bbar, footer). See {@link #bodyCfg}. Read-only.
57      * @type Ext.Element
58      * @property bwrap
59      */
60     <div id="prop-Ext.Panel-collapsed"></div>/**
61      * True if this panel is collapsed. Read-only.
62      * @type Boolean
63      * @property collapsed
64      */
65     <div id="cfg-Ext.Panel-bodyCfg"></div>/**
66      * @cfg {Object} bodyCfg
67      * <p>A {@link Ext.DomHelper DomHelper} element specification object may be specified for any
68      * Panel Element.</p>
69      * <p>By default, the Default element in the table below will be used for the html markup to
70      * create a child element with the commensurate Default class name (<code>baseCls</code> will be
71      * replaced by <code>{@link #baseCls}</code>):</p>
72      * <pre>
73      * Panel      Default  Default             Custom      Additional       Additional
74      * Element    element  class               element     class            style
75      * ========   ==========================   =========   ==============   ===========
76      * {@link #header}     div      {@link #baseCls}+'-header'   {@link #headerCfg}   headerCssClass   headerStyle
77      * {@link #bwrap}      div      {@link #baseCls}+'-bwrap'     {@link #bwrapCfg}    bwrapCssClass    bwrapStyle
78      * + tbar     div      {@link #baseCls}+'-tbar'       {@link #tbarCfg}     tbarCssClass     tbarStyle
79      * + {@link #body}     div      {@link #baseCls}+'-body'       {@link #bodyCfg}     {@link #bodyCssClass}     {@link #bodyStyle}
80      * + bbar     div      {@link #baseCls}+'-bbar'       {@link #bbarCfg}     bbarCssClass     bbarStyle
81      * + {@link #footer}   div      {@link #baseCls}+'-footer'   {@link #footerCfg}   footerCssClass   footerStyle
82      * </pre>
83      * <p>Configuring a Custom element may be used, for example, to force the {@link #body} Element
84      * to use a different form of markup than is created by default. An example of this might be
85      * to {@link Ext.Element#createChild create a child} Panel containing a custom content, such as
86      * a header, or forcing centering of all Panel content by having the body be a &lt;center&gt;
87      * element:</p>
88      * <pre><code>
89 new Ext.Panel({
90     title: 'Message Title',
91     renderTo: Ext.getBody(),
92     width: 200, height: 130,
93     <b>bodyCfg</b>: {
94         tag: 'center',
95         cls: 'x-panel-body',  // Default class not applied if Custom element specified
96         html: 'Message'
97     },
98     footerCfg: {
99         tag: 'h2',
100         cls: 'x-panel-footer'        // same as the Default class
101         html: 'footer html'
102     },
103     footerCssClass: 'custom-footer', // additional css class, see {@link Ext.element#addClass addClass}
104     footerStyle:    'background-color:red' // see {@link #bodyStyle}
105 });
106      * </code></pre>
107      * <p>The example above also explicitly creates a <code>{@link #footer}</code> with custom markup and
108      * styling applied.</p>
109      */
110     <div id="cfg-Ext.Panel-headerCfg"></div>/**
111      * @cfg {Object} headerCfg
112      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
113      * of this Panel's {@link #header} Element.  See <code>{@link #bodyCfg}</code> also.</p>
114      */
115     <div id="cfg-Ext.Panel-bwrapCfg"></div>/**
116      * @cfg {Object} bwrapCfg
117      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
118      * of this Panel's {@link #bwrap} Element.  See <code>{@link #bodyCfg}</code> also.</p>
119      */
120     <div id="cfg-Ext.Panel-tbarCfg"></div>/**
121      * @cfg {Object} tbarCfg
122      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
123      * of this Panel's {@link #tbar} Element.  See <code>{@link #bodyCfg}</code> also.</p>
124      */
125     <div id="cfg-Ext.Panel-bbarCfg"></div>/**
126      * @cfg {Object} bbarCfg
127      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
128      * of this Panel's {@link #bbar} Element.  See <code>{@link #bodyCfg}</code> also.</p>
129      */
130     <div id="cfg-Ext.Panel-footerCfg"></div>/**
131      * @cfg {Object} footerCfg
132      * <p>A {@link Ext.DomHelper DomHelper} element specification object specifying the element structure
133      * of this Panel's {@link #footer} Element.  See <code>{@link #bodyCfg}</code> also.</p>
134      */
135     <div id="cfg-Ext.Panel-closable"></div>/**
136      * @cfg {Boolean} closable
137      * Panels themselves do not directly support being closed, but some Panel subclasses do (like
138      * {@link Ext.Window}) or a Panel Class within an {@link Ext.TabPanel}.  Specify <code>true</code>
139      * to enable closing in such situations. Defaults to <code>false</code>.
140      */
141     <div id="prop-Ext.Panel-footer"></div>/**
142      * The Panel's footer {@link Ext.Element Element}. Read-only.
143      * <p>This Element is used to house the Panel's <code>{@link #buttons}</code> or <code>{@link #fbar}</code>.</p>
144      * <br><p><b>Note</b>: see the Note for <code>{@link Ext.Component#el el}</code> also.</p>
145      * @type Ext.Element
146      * @property footer
147      */
148     <div id="cfg-Ext.Panel-applyTo"></div>/**
149      * @cfg {Mixed} applyTo
150      * <p>The id of the node, a DOM node or an existing Element corresponding to a DIV that is already present in
151      * the document that specifies some panel-specific structural markup.  When <code>applyTo</code> is used,
152      * constituent parts of the panel can be specified by CSS class name within the main element, and the panel
153      * will automatically create those components from that markup. Any required components not specified in the
154      * markup will be autogenerated if necessary.</p>
155      * <p>The following class names are supported (baseCls will be replaced by {@link #baseCls}):</p>
156      * <ul><li>baseCls + '-header'</li>
157      * <li>baseCls + '-header-text'</li>
158      * <li>baseCls + '-bwrap'</li>
159      * <li>baseCls + '-tbar'</li>
160      * <li>baseCls + '-body'</li>
161      * <li>baseCls + '-bbar'</li>
162      * <li>baseCls + '-footer'</li></ul>
163      * <p>Using this config, a call to render() is not required.  If applyTo is specified, any value passed for
164      * {@link #renderTo} will be ignored and the target element's parent node will automatically be used as the
165      * panel's container.</p>
166      */
167     <div id="cfg-Ext.Panel-tbar"></div>/**
168      * @cfg {Object/Array} tbar
169      * <p>The top toolbar of the panel. This can be a {@link Ext.Toolbar} object, a toolbar config, or an array of
170      * buttons/button configs to be added to the toolbar.  Note that this is not available as a property after render.
171      * To access the top toolbar after render, use {@link #getTopToolbar}.</p>
172      * <p><b>Note:</b> Although a Toolbar may contain Field components, these will <b>not</b> be updated by a load
173      * of an ancestor FormPanel. A Panel's toolbars are not part of the standard Container->Component hierarchy, and
174      * so are not scanned to collect form items. However, the values <b>will</b> be submitted because form
175      * submission parameters are collected from the DOM tree.</p>
176      */
177     <div id="cfg-Ext.Panel-bbar"></div>/**
178      * @cfg {Object/Array} bbar
179      * <p>The bottom toolbar of the panel. This can be a {@link Ext.Toolbar} object, a toolbar config, or an array of
180      * buttons/button configs to be added to the toolbar.  Note that this is not available as a property after render.
181      * To access the bottom toolbar after render, use {@link #getBottomToolbar}.</p>
182      * <p><b>Note:</b> Although a Toolbar may contain Field components, these will <b>not</b> be updated by a load
183      * of an ancestor FormPanel. A Panel's toolbars are not part of the standard Container->Component hierarchy, and
184      * so are not scanned to collect form items. However, the values <b>will</b> be submitted because form
185      * submission parameters are collected from the DOM tree.</p>
186      */
187     <div id="cfg-Ext.Panel-fbar"></div>/** @cfg {Object/Array} fbar
188      * <p>A {@link Ext.Toolbar Toolbar} object, a Toolbar config, or an array of
189      * {@link Ext.Button Button}s/{@link Ext.Button Button} configs, describing a {@link Ext.Toolbar Toolbar} to be rendered into this Panel's footer element.</p>
190      * <p>After render, the <code>fbar</code> property will be an {@link Ext.Toolbar Toolbar} instance.</p>
191      * <p>If <code>{@link #buttons}</code> are specified, they will supersede the <code>fbar</code> configuration property.</p>
192      * The Panel's <code>{@link #buttonAlign}</code> configuration affects the layout of these items, for example:
193      * <pre><code>
194 var w = new Ext.Window({
195     height: 250,
196     width: 500,
197     bbar: new Ext.Toolbar({
198         items: [{
199             text: 'bbar Left'
200         },'->',{
201             text: 'bbar Right'
202         }]
203     }),
204     {@link #buttonAlign}: 'left', // anything but 'center' or 'right' and you can use '-', and '->'
205                                   // to control the alignment of fbar items
206     fbar: [{
207         text: 'fbar Left'
208     },'->',{
209         text: 'fbar Right'
210     }]
211 }).show();
212      * </code></pre>
213      * <p><b>Note:</b> Although a Toolbar may contain Field components, these will <b>not</b> be updated by a load
214      * of an ancestor FormPanel. A Panel's toolbars are not part of the standard Container->Component hierarchy, and
215      * so are not scanned to collect form items. However, the values <b>will</b> be submitted because form
216      * submission parameters are collected from the DOM tree.</p>
217      */
218     <div id="cfg-Ext.Panel-header"></div>/**
219      * @cfg {Boolean} header
220      * <code>true</code> to create the Panel's header element explicitly, <code>false</code> to skip creating
221      * it.  If a <code>{@link #title}</code> is set the header will be created automatically, otherwise it will not.
222      * If a <code>{@link #title}</code> is set but <code>header</code> is explicitly set to <code>false</code>, the header
223      * will not be rendered.
224      */
225     <div id="cfg-Ext.Panel-footer"></div>/**
226      * @cfg {Boolean} footer
227      * <code>true</code> to create the footer element explicitly, false to skip creating it. The footer
228      * will be created automatically if <code>{@link #buttons}</code> or a <code>{@link #fbar}</code> have
229      * been configured.  See <code>{@link #bodyCfg}</code> for an example.
230      */
231     <div id="cfg-Ext.Panel-title"></div>/**
232      * @cfg {String} title
233      * The title text to be used as innerHTML (html tags are accepted) to display in the panel
234      * <code>{@link #header}</code> (defaults to ''). When a <code>title</code> is specified the
235      * <code>{@link #header}</code> element will automatically be created and displayed unless
236      * {@link #header} is explicitly set to <code>false</code>.  If you do not want to specify a
237      * <code>title</code> at config time, but you may want one later, you must either specify a non-empty
238      * <code>title</code> (a blank space ' ' will do) or <code>header:true</code> so that the container
239      * element will get created.
240      */
241     <div id="cfg-Ext.Panel-buttons"></div>/**
242      * @cfg {Array} buttons
243      * <code>buttons</code> will be used as <code>{@link Ext.Container#items items}</code> for the toolbar in
244      * the footer (<code>{@link #fbar}</code>). Typically the value of this configuration property will be
245      * an array of {@link Ext.Button}s or {@link Ext.Button} configuration objects.
246      * If an item is configured with <code>minWidth</code> or the Panel is configured with <code>minButtonWidth</code>,
247      * that width will be applied to the item.
248      */
249     <div id="cfg-Ext.Panel-autoLoad"></div>/**
250      * @cfg {Object/String/Function} autoLoad
251      * A valid url spec according to the Updater {@link Ext.Updater#update} method.
252      * If autoLoad is not null, the panel will attempt to load its contents
253      * immediately upon render.<p>
254      * The URL will become the default URL for this panel's {@link #body} element,
255      * so it may be {@link Ext.Element#refresh refresh}ed at any time.</p>
256      */
257     <div id="cfg-Ext.Panel-frame"></div>/**
258      * @cfg {Boolean} frame
259      * <code>false</code> by default to render with plain 1px square borders. <code>true</code> to render with
260      * 9 elements, complete with custom rounded corners (also see {@link Ext.Element#boxWrap}).
261      * <p>The template generated for each condition is depicted below:</p><pre><code>
262      *
263 // frame = false
264 &lt;div id="developer-specified-id-goes-here" class="x-panel">
265
266     &lt;div class="x-panel-header">&lt;span class="x-panel-header-text">Title: (frame:false)&lt;/span>&lt;/div>
267
268     &lt;div class="x-panel-bwrap">
269         &lt;div class="x-panel-body">&lt;p>html value goes here&lt;/p>&lt;/div>
270     &lt;/div>
271 &lt;/div>
272
273 // frame = true (create 9 elements)
274 &lt;div id="developer-specified-id-goes-here" class="x-panel">
275     &lt;div class="x-panel-tl">&lt;div class="x-panel-tr">&lt;div class="x-panel-tc">
276         &lt;div class="x-panel-header">&lt;span class="x-panel-header-text">Title: (frame:true)&lt;/span>&lt;/div>
277     &lt;/div>&lt;/div>&lt;/div>
278
279     &lt;div class="x-panel-bwrap">
280         &lt;div class="x-panel-ml">&lt;div class="x-panel-mr">&lt;div class="x-panel-mc">
281             &lt;div class="x-panel-body">&lt;p>html value goes here&lt;/p>&lt;/div>
282         &lt;/div>&lt;/div>&lt;/div>
283
284         &lt;div class="x-panel-bl">&lt;div class="x-panel-br">&lt;div class="x-panel-bc"/>
285         &lt;/div>&lt;/div>&lt;/div>
286 &lt;/div>
287      * </code></pre>
288      */
289     <div id="cfg-Ext.Panel-border"></div>/**
290      * @cfg {Boolean} border
291      * True to display the borders of the panel's body element, false to hide them (defaults to true).  By default,
292      * the border is a 2px wide inset border, but this can be further altered by setting {@link #bodyBorder} to false.
293      */
294     <div id="cfg-Ext.Panel-bodyBorder"></div>/**
295      * @cfg {Boolean} bodyBorder
296      * True to display an interior border on the body element of the panel, false to hide it (defaults to true).
297      * This only applies when {@link #border} == true.  If border == true and bodyBorder == false, the border will display
298      * as a 1px wide inset border, giving the entire body element an inset appearance.
299      */
300     <div id="cfg-Ext.Panel-bodyCssClass"></div>/**
301      * @cfg {String/Object/Function} bodyCssClass
302      * Additional css class selector to be applied to the {@link #body} element in the format expected by
303      * {@link Ext.Element#addClass} (defaults to null). See {@link #bodyCfg}.
304      */
305     <div id="cfg-Ext.Panel-bodyStyle"></div>/**
306      * @cfg {String/Object/Function} bodyStyle
307      * Custom CSS styles to be applied to the {@link #body} element in the format expected by
308      * {@link Ext.Element#applyStyles} (defaults to null). See {@link #bodyCfg}.
309      */
310     <div id="cfg-Ext.Panel-iconCls"></div>/**
311      * @cfg {String} iconCls
312      * The CSS class selector that specifies a background image to be used as the header icon (defaults to '').
313      * <p>An example of specifying a custom icon class would be something like:
314      * </p><pre><code>
315 // specify the property in the config for the class:
316      ...
317      iconCls: 'my-icon'
318
319 // css class that specifies background image to be used as the icon image:
320 .my-icon { background-image: url(../images/my-icon.gif) 0 6px no-repeat !important; }
321 </code></pre>
322      */
323     <div id="cfg-Ext.Panel-collapsible"></div>/**
324      * @cfg {Boolean} collapsible
325      * True to make the panel collapsible and have the expand/collapse toggle button automatically rendered into
326      * the header tool button area, false to keep the panel statically sized with no button (defaults to false).
327      */
328     <div id="cfg-Ext.Panel-tools"></div>/**
329      * @cfg {Array} tools
330      * An array of tool button configs to be added to the header tool area. When rendered, each tool is
331      * stored as an {@link Ext.Element Element} referenced by a public property called <code><b></b>tools.<i>&lt;tool-type&gt;</i></code>
332      * <p>Each tool config may contain the following properties:
333      * <div class="mdetail-params"><ul>
334      * <li><b>id</b> : String<div class="sub-desc"><b>Required.</b> The type
335      * of tool to create. By default, this assigns a CSS class of the form <code>x-tool-<i>&lt;tool-type&gt;</i></code> to the
336      * resulting tool Element. Ext provides CSS rules, and an icon sprite containing images for the tool types listed below.
337      * The developer may implement custom tools by supplying alternate CSS rules and background images:
338      * <ul>
339      * <div class="x-tool x-tool-toggle" style="float:left; margin-right:5;"> </div><div><code> toggle</code> (Created by default when {@link #collapsible} is <code>true</code>)</div>
340      * <div class="x-tool x-tool-close" style="float:left; margin-right:5;"> </div><div><code> close</code></div>
341      * <div class="x-tool x-tool-minimize" style="float:left; margin-right:5;"> </div><div><code> minimize</code></div>
342      * <div class="x-tool x-tool-maximize" style="float:left; margin-right:5;"> </div><div><code> maximize</code></div>
343      * <div class="x-tool x-tool-restore" style="float:left; margin-right:5;"> </div><div><code> restore</code></div>
344      * <div class="x-tool x-tool-gear" style="float:left; margin-right:5;"> </div><div><code> gear</code></div>
345      * <div class="x-tool x-tool-pin" style="float:left; margin-right:5;"> </div><div><code> pin</code></div>
346      * <div class="x-tool x-tool-unpin" style="float:left; margin-right:5;"> </div><div><code> unpin</code></div>
347      * <div class="x-tool x-tool-right" style="float:left; margin-right:5;"> </div><div><code> right</code></div>
348      * <div class="x-tool x-tool-left" style="float:left; margin-right:5;"> </div><div><code> left</code></div>
349      * <div class="x-tool x-tool-up" style="float:left; margin-right:5;"> </div><div><code> up</code></div>
350      * <div class="x-tool x-tool-down" style="float:left; margin-right:5;"> </div><div><code> down</code></div>
351      * <div class="x-tool x-tool-refresh" style="float:left; margin-right:5;"> </div><div><code> refresh</code></div>
352      * <div class="x-tool x-tool-minus" style="float:left; margin-right:5;"> </div><div><code> minus</code></div>
353      * <div class="x-tool x-tool-plus" style="float:left; margin-right:5;"> </div><div><code> plus</code></div>
354      * <div class="x-tool x-tool-help" style="float:left; margin-right:5;"> </div><div><code> help</code></div>
355      * <div class="x-tool x-tool-search" style="float:left; margin-right:5;"> </div><div><code> search</code></div>
356      * <div class="x-tool x-tool-save" style="float:left; margin-right:5;"> </div><div><code> save</code></div>
357      * <div class="x-tool x-tool-print" style="float:left; margin-right:5;"> </div><div><code> print</code></div>
358      * </ul></div></li>
359      * <li><b>handler</b> : Function<div class="sub-desc"><b>Required.</b> The function to
360      * call when clicked. Arguments passed are:<ul>
361      * <li><b>event</b> : Ext.EventObject<div class="sub-desc">The click event.</div></li>
362      * <li><b>toolEl</b> : Ext.Element<div class="sub-desc">The tool Element.</div></li>
363      * <li><b>panel</b> : Ext.Panel<div class="sub-desc">The host Panel</div></li>
364      * <li><b>tc</b> : Object<div class="sub-desc">The tool configuration object</div></li>
365      * </ul></div></li>
366      * <li><b>stopEvent</b> : Boolean<div class="sub-desc">Defaults to true. Specify as false to allow click event to propagate.</div></li>
367      * <li><b>scope</b> : Object<div class="sub-desc">The scope in which to call the handler.</div></li>
368      * <li><b>qtip</b> : String/Object<div class="sub-desc">A tip string, or
369      * a config argument to {@link Ext.QuickTip#register}</div></li>
370      * <li><b>hidden</b> : Boolean<div class="sub-desc">True to initially render hidden.</div></li>
371      * <li><b>on</b> : Object<div class="sub-desc">A listener config object specifiying
372      * event listeners in the format of an argument to {@link #addListener}</div></li>
373      * </ul></div>
374      * <p>Note that, apart from the toggle tool which is provided when a panel is collapsible, these
375      * tools only provide the visual button. Any required functionality must be provided by adding
376      * handlers that implement the necessary behavior.</p>
377      * <p>Example usage:</p>
378      * <pre><code>
379 tools:[{
380     id:'refresh',
381     qtip: 'Refresh form Data',
382     // hidden:true,
383     handler: function(event, toolEl, panel){
384         // refresh logic
385     }
386 },
387 {
388     id:'help',
389     qtip: 'Get Help',
390     handler: function(event, toolEl, panel){
391         // whatever
392     }
393 }]
394 </code></pre>
395      * <p>For the custom id of <code>'help'</code> define two relevant css classes with a link to
396      * a 15x15 image:</p>
397      * <pre><code>
398 .x-tool-help {background-image: url(images/help.png);}
399 .x-tool-help-over {background-image: url(images/help_over.png);}
400 // if using an image sprite:
401 .x-tool-help {background-image: url(images/help.png) no-repeat 0 0;}
402 .x-tool-help-over {background-position:-15px 0;}
403 </code></pre>
404      */
405     <div id="cfg-Ext.Panel-toolTemplate"></div>/**
406      * @cfg {Ext.Template/Ext.XTemplate} toolTemplate
407      * <p>A Template used to create {@link #tools} in the {@link #header} Element. Defaults to:</p><pre><code>
408 new Ext.Template('&lt;div class="x-tool x-tool-{id}">&amp;#160;&lt;/div>')</code></pre>
409      * <p>This may may be overridden to provide a custom DOM structure for tools based upon a more
410      * complex XTemplate. The template's data is a single tool configuration object (Not the entire Array)
411      * as specified in {@link #tools}.  In the following example an &lt;a> tag is used to provide a
412      * visual indication when hovering over the tool:</p><pre><code>
413 var win = new Ext.Window({
414     tools: [{
415         id: 'download',
416         href: '/MyPdfDoc.pdf'
417     }],
418     toolTemplate: new Ext.XTemplate(
419         '&lt;tpl if="id==\'download\'">',
420             '&lt;a class="x-tool x-tool-pdf" href="{href}">&lt;/a>',
421         '&lt;/tpl>',
422         '&lt;tpl if="id!=\'download\'">',
423             '&lt;div class="x-tool x-tool-{id}">&amp;#160;&lt;/div>',
424         '&lt;/tpl>'
425     ),
426     width:500,
427     height:300,
428     closeAction:'hide'
429 });</code></pre>
430      * <p>Note that the CSS class 'x-tool-pdf' should have an associated style rule which provides an
431      * appropriate background image, something like:</p>
432     <pre><code>
433     a.x-tool-pdf {background-image: url(../shared/extjs/images/pdf.gif)!important;}
434     </code></pre>
435      */
436     <div id="cfg-Ext.Panel-hideCollapseTool"></div>/**
437      * @cfg {Boolean} hideCollapseTool
438      * <code>true</code> to hide the expand/collapse toggle button when <code>{@link #collapsible} == true</code>,
439      * <code>false</code> to display it (defaults to <code>false</code>).
440      */
441     <div id="cfg-Ext.Panel-titleCollapse"></div>/**
442      * @cfg {Boolean} titleCollapse
443      * <code>true</code> to allow expanding and collapsing the panel (when <code>{@link #collapsible} = true</code>)
444      * by clicking anywhere in the header bar, <code>false</code>) to allow it only by clicking to tool button
445      * (defaults to <code>false</code>)). If this panel is a child item of a border layout also see the
446      * {@link Ext.layout.BorderLayout.Region BorderLayout.Region}
447      * <code>{@link Ext.layout.BorderLayout.Region#floatable floatable}</code> config option.
448      */
449
450     <div id="cfg-Ext.Panel-floating"></div>/**
451      * @cfg {Mixed} floating
452      * <p>This property is used to configure the underlying {@link Ext.Layer}. Acceptable values for this
453      * configuration property are:</p><div class="mdetail-params"><ul>
454      * <li><b><code>false</code></b> : <b>Default.</b><div class="sub-desc">Display the panel inline where it is
455      * rendered.</div></li>
456      * <li><b><code>true</code></b> : <div class="sub-desc">Float the panel (absolute position it with automatic
457      * shimming and shadow).<ul>
458      * <div class="sub-desc">Setting floating to true will create an Ext.Layer for this panel and display the
459      * panel at negative offsets so that it is hidden.</div>
460      * <div class="sub-desc">Since the panel will be absolute positioned, the position must be set explicitly
461      * <i>after</i> render (e.g., <code>myPanel.setPosition(100,100);</code>).</div>
462      * <div class="sub-desc"><b>Note</b>: when floating a panel you should always assign a fixed width,
463      * otherwise it will be auto width and will expand to fill to the right edge of the viewport.</div>
464      * </ul></div></li>
465      * <li><b><code>{@link Ext.Layer object}</code></b> : <div class="sub-desc">The specified object will be used
466      * as the configuration object for the {@link Ext.Layer} that will be created.</div></li>
467      * </ul></div>
468      */
469     <div id="cfg-Ext.Panel-shadow"></div>/**
470      * @cfg {Boolean/String} shadow
471      * <code>true</code> (or a valid Ext.Shadow {@link Ext.Shadow#mode} value) to display a shadow behind the
472      * panel, <code>false</code> to display no shadow (defaults to <code>'sides'</code>).  Note that this option
473      * only applies when <code>{@link #floating} = true</code>.
474      */
475     <div id="cfg-Ext.Panel-shadowOffset"></div>/**
476      * @cfg {Number} shadowOffset
477      * The number of pixels to offset the shadow if displayed (defaults to <code>4</code>). Note that this
478      * option only applies when <code>{@link #floating} = true</code>.
479      */
480     <div id="cfg-Ext.Panel-shim"></div>/**
481      * @cfg {Boolean} shim
482      * <code>false</code> to disable the iframe shim in browsers which need one (defaults to <code>true</code>).
483      * Note that this option only applies when <code>{@link #floating} = true</code>.
484      */
485     <div id="cfg-Ext.Panel-keys"></div>/**
486      * @cfg {Object/Array} keys
487      * A {@link Ext.KeyMap} config object (in the format expected by {@link Ext.KeyMap#addBinding}
488      * used to assign custom key handling to this panel (defaults to <code>null</code>).
489      */
490     <div id="cfg-Ext.Panel-draggable"></div>/**
491      * @cfg {Boolean/Object} draggable
492      * <p><code>true</code> to enable dragging of this Panel (defaults to <code>false</code>).</p>
493      * <p>For custom drag/drop implementations, an <b>Ext.Panel.DD</b> config could also be passed
494      * in this config instead of <code>true</code>. Ext.Panel.DD is an internal, undocumented class which
495      * moves a proxy Element around in place of the Panel's element, but provides no other behaviour
496      * during dragging or on drop. It is a subclass of {@link Ext.dd.DragSource}, so behaviour may be
497      * added by implementing the interface methods of {@link Ext.dd.DragDrop} e.g.:
498      * <pre><code>
499 new Ext.Panel({
500     title: 'Drag me',
501     x: 100,
502     y: 100,
503     renderTo: Ext.getBody(),
504     floating: true,
505     frame: true,
506     width: 400,
507     height: 200,
508     draggable: {
509 //      Config option of Ext.Panel.DD class.
510 //      It&#39;s a floating Panel, so do not show a placeholder proxy in the original position.
511         insertProxy: false,
512
513 //      Called for each mousemove event while dragging the DD object.
514         onDrag : function(e){
515 //          Record the x,y position of the drag proxy so that we can
516 //          position the Panel at end of drag.
517             var pel = this.proxy.getEl();
518             this.x = pel.getLeft(true);
519             this.y = pel.getTop(true);
520
521 //          Keep the Shadow aligned if there is one.
522             var s = this.panel.getEl().shadow;
523             if (s) {
524                 s.realign(this.x, this.y, pel.getWidth(), pel.getHeight());
525             }
526         },
527
528 //      Called on the mouseup event.
529         endDrag : function(e){
530             this.panel.setPosition(this.x, this.y);
531         }
532     }
533 }).show();
534 </code></pre>
535      */
536     <div id="cfg-Ext.Panel-disabled"></div>/**
537      * @cfg {Boolean} disabled
538      * Render this panel disabled (default is <code>false</code>). An important note when using the disabled
539      * config on panels is that IE will often fail to initialize the disabled mask element correectly if
540      * the panel's layout has not yet completed by the time the Panel is disabled during the render process.
541      * If you experience this issue, you may need to instead use the {@link #afterlayout} event to initialize
542      * the disabled state:
543      * <pre><code>
544 new Ext.Panel({
545     ...
546     listeners: {
547         'afterlayout': {
548             fn: function(p){
549                 p.disable();
550             },
551             single: true // important, as many layouts can occur
552         }
553     }
554 });
555 </code></pre>
556      */
557     <div id="cfg-Ext.Panel-autoHeight"></div>/**
558      * @cfg {Boolean} autoHeight
559      * <code>true</code> to use height:'auto', <code>false</code> to use fixed height (defaults to <code>false</code>).
560      * <b>Note</b>: Setting <code>autoHeight: true</code> means that the browser will manage the panel's height
561      * based on its contents, and that Ext will not manage it at all. If the panel is within a layout that
562      * manages dimensions (<code>fit</code>, <code>border</code>, etc.) then setting <code>autoHeight: true</code>
563      * can cause issues with scrolling and will not generally work as expected since the panel will take
564      * on the height of its contents rather than the height required by the Ext layout.
565      */
566
567
568     <div id="cfg-Ext.Panel-baseCls"></div>/**
569      * @cfg {String} baseCls
570      * The base CSS class to apply to this panel's element (defaults to <code>'x-panel'</code>).
571      * <p>Another option available by default is to specify <code>'x-plain'</code> which strips all styling
572      * except for required attributes for Ext layouts to function (e.g. overflow:hidden).
573      * See <code>{@link #unstyled}</code> also.</p>
574      */
575     baseCls : 'x-panel',
576     <div id="cfg-Ext.Panel-collapsedCls"></div>/**
577      * @cfg {String} collapsedCls
578      * A CSS class to add to the panel's element after it has been collapsed (defaults to
579      * <code>'x-panel-collapsed'</code>).
580      */
581     collapsedCls : 'x-panel-collapsed',
582     <div id="cfg-Ext.Panel-maskDisabled"></div>/**
583      * @cfg {Boolean} maskDisabled
584      * <code>true</code> to mask the panel when it is {@link #disabled}, <code>false</code> to not mask it (defaults
585      * to <code>true</code>).  Either way, the panel will always tell its contained elements to disable themselves
586      * when it is disabled, but masking the panel can provide an additional visual cue that the panel is
587      * disabled.
588      */
589     maskDisabled : true,
590     <div id="cfg-Ext.Panel-animCollapse"></div>/**
591      * @cfg {Boolean} animCollapse
592      * <code>true</code> to animate the transition when the panel is collapsed, <code>false</code> to skip the
593      * animation (defaults to <code>true</code> if the {@link Ext.Fx} class is available, otherwise <code>false</code>).
594      */
595     animCollapse : Ext.enableFx,
596     <div id="cfg-Ext.Panel-headerAsText"></div>/**
597      * @cfg {Boolean} headerAsText
598      * <code>true</code> to display the panel <code>{@link #title}</code> in the <code>{@link #header}</code>,
599      * <code>false</code> to hide it (defaults to <code>true</code>).
600      */
601     headerAsText : true,
602     <div id="cfg-Ext.Panel-buttonAlign"></div>/**
603      * @cfg {String} buttonAlign
604      * The alignment of any {@link #buttons} added to this panel.  Valid values are <code>'right'</code>,
605      * <code>'left'</code> and <code>'center'</code> (defaults to <code>'right'</code>).
606      */
607     buttonAlign : 'right',
608     <div id="cfg-Ext.Panel-collapsed"></div>/**
609      * @cfg {Boolean} collapsed
610      * <code>true</code> to render the panel collapsed, <code>false</code> to render it expanded (defaults to
611      * <code>false</code>).
612      */
613     collapsed : false,
614     <div id="cfg-Ext.Panel-collapseFirst"></div>/**
615      * @cfg {Boolean} collapseFirst
616      * <code>true</code> to make sure the collapse/expand toggle button always renders first (to the left of)
617      * any other tools in the panel's title bar, <code>false</code> to render it last (defaults to <code>true</code>).
618      */
619     collapseFirst : true,
620     <div id="cfg-Ext.Panel-minButtonWidth"></div>/**
621      * @cfg {Number} minButtonWidth
622      * Minimum width in pixels of all {@link #buttons} in this panel (defaults to <code>75</code>)
623      */
624     minButtonWidth : 75,
625     <div id="cfg-Ext.Panel-unstyled"></div>/**
626      * @cfg {Boolean} unstyled
627      * Overrides the <code>{@link #baseCls}</code> setting to <code>{@link #baseCls} = 'x-plain'</code> which renders
628      * the panel unstyled except for required attributes for Ext layouts to function (e.g. overflow:hidden).
629      */
630     <div id="cfg-Ext.Panel-elements"></div>/**
631      * @cfg {String} elements
632      * A comma-delimited list of panel elements to initialize when the panel is rendered.  Normally, this list will be
633      * generated automatically based on the items added to the panel at config time, but sometimes it might be useful to
634      * make sure a structural element is rendered even if not specified at config time (for example, you may want
635      * to add a button or toolbar dynamically after the panel has been rendered).  Adding those elements to this
636      * list will allocate the required placeholders in the panel when it is rendered.  Valid values are<div class="mdetail-params"><ul>
637      * <li><code>header</code></li>
638      * <li><code>tbar</code> (top bar)</li>
639      * <li><code>body</code></li>
640      * <li><code>bbar</code> (bottom bar)</li>
641      * <li><code>footer</code></li>
642      * </ul></div>
643      * Defaults to '<code>body</code>'.
644      */
645     elements : 'body',
646     <div id="cfg-Ext.Panel-preventBodyReset"></div>/**
647      * @cfg {Boolean} preventBodyReset
648      * Defaults to <code>false</code>.  When set to <code>true</code>, an extra css class <code>'x-panel-normal'</code>
649      * will be added to the panel's element, effectively applying css styles suggested by the W3C
650      * (see http://www.w3.org/TR/CSS21/sample.html) to the Panel's <b>body</b> element (not the header,
651      * footer, etc.).
652      */
653     preventBodyReset : false,
654
655     <div id="cfg-Ext.Panel-padding"></div>/**
656      * @cfg {Number/String} padding
657      * A shortcut for setting a padding style on the body element. The value can either be
658      * a number to be applied to all sides, or a normal css string describing padding.
659      * Defaults to <tt>undefined</tt>.
660      *
661      */
662     padding: undefined,
663
664     <div id="cfg-Ext.Panel-resizeEvent"></div>/** @cfg {String} resizeEvent
665      * The event to listen to for resizing in layouts. Defaults to <tt>'bodyresize'</tt>.
666      */
667     resizeEvent: 'bodyresize',
668
669     // protected - these could be used to customize the behavior of the window,
670     // but changing them would not be useful without further mofifications and
671     // could lead to unexpected or undesirable results.
672     toolTarget : 'header',
673     collapseEl : 'bwrap',
674     slideAnchor : 't',
675     disabledClass : '',
676
677     // private, notify box this class will handle heights
678     deferHeight : true,
679     // private
680     expandDefaults: {
681         duration : 0.25
682     },
683     // private
684     collapseDefaults : {
685         duration : 0.25
686     },
687
688     // private
689     initComponent : function(){
690         Ext.Panel.superclass.initComponent.call(this);
691
692         this.addEvents(
693             <div id="event-Ext.Panel-bodyresize"></div>/**
694              * @event bodyresize
695              * Fires after the Panel has been resized.
696              * @param {Ext.Panel} p the Panel which has been resized.
697              * @param {Number} width The Panel's new width.
698              * @param {Number} height The Panel's new height.
699              */
700             'bodyresize',
701             <div id="event-Ext.Panel-titlechange"></div>/**
702              * @event titlechange
703              * Fires after the Panel title has been {@link #title set} or {@link #setTitle changed}.
704              * @param {Ext.Panel} p the Panel which has had its title changed.
705              * @param {String} The new title.
706              */
707             'titlechange',
708             <div id="event-Ext.Panel-iconchange"></div>/**
709              * @event iconchange
710              * Fires after the Panel icon class has been {@link #iconCls set} or {@link #setIconClass changed}.
711              * @param {Ext.Panel} p the Panel which has had its {@link #iconCls icon class} changed.
712              * @param {String} The new icon class.
713              * @param {String} The old icon class.
714              */
715             'iconchange',
716             <div id="event-Ext.Panel-collapse"></div>/**
717              * @event collapse
718              * Fires after the Panel has been collapsed.
719              * @param {Ext.Panel} p the Panel that has been collapsed.
720              */
721             'collapse',
722             <div id="event-Ext.Panel-expand"></div>/**
723              * @event expand
724              * Fires after the Panel has been expanded.
725              * @param {Ext.Panel} p The Panel that has been expanded.
726              */
727             'expand',
728             <div id="event-Ext.Panel-beforecollapse"></div>/**
729              * @event beforecollapse
730              * Fires before the Panel is collapsed.  A handler can return false to cancel the collapse.
731              * @param {Ext.Panel} p the Panel being collapsed.
732              * @param {Boolean} animate True if the collapse is animated, else false.
733              */
734             'beforecollapse',
735             <div id="event-Ext.Panel-beforeexpand"></div>/**
736              * @event beforeexpand
737              * Fires before the Panel is expanded.  A handler can return false to cancel the expand.
738              * @param {Ext.Panel} p The Panel being expanded.
739              * @param {Boolean} animate True if the expand is animated, else false.
740              */
741             'beforeexpand',
742             <div id="event-Ext.Panel-beforeclose"></div>/**
743              * @event beforeclose
744              * Fires before the Panel is closed.  Note that Panels do not directly support being closed, but some
745              * Panel subclasses do (like {@link Ext.Window}) or a Panel within a Ext.TabPanel.  This event only
746              * applies to such subclasses.
747              * A handler can return false to cancel the close.
748              * @param {Ext.Panel} p The Panel being closed.
749              */
750             'beforeclose',
751             <div id="event-Ext.Panel-close"></div>/**
752              * @event close
753              * Fires after the Panel is closed.  Note that Panels do not directly support being closed, but some
754              * Panel subclasses do (like {@link Ext.Window}) or a Panel within a Ext.TabPanel.
755              * @param {Ext.Panel} p The Panel that has been closed.
756              */
757             'close',
758             <div id="event-Ext.Panel-activate"></div>/**
759              * @event activate
760              * Fires after the Panel has been visually activated.
761              * Note that Panels do not directly support being activated, but some Panel subclasses
762              * do (like {@link Ext.Window}). Panels which are child Components of a TabPanel fire the
763              * activate and deactivate events under the control of the TabPanel.
764              * @param {Ext.Panel} p The Panel that has been activated.
765              */
766             'activate',
767             <div id="event-Ext.Panel-deactivate"></div>/**
768              * @event deactivate
769              * Fires after the Panel has been visually deactivated.
770              * Note that Panels do not directly support being deactivated, but some Panel subclasses
771              * do (like {@link Ext.Window}). Panels which are child Components of a TabPanel fire the
772              * activate and deactivate events under the control of the TabPanel.
773              * @param {Ext.Panel} p The Panel that has been deactivated.
774              */
775             'deactivate'
776         );
777
778         if(this.unstyled){
779             this.baseCls = 'x-plain';
780         }
781
782
783         this.toolbars = [];
784         // shortcuts
785         if(this.tbar){
786             this.elements += ',tbar';
787             this.topToolbar = this.createToolbar(this.tbar);
788             delete this.tbar;
789
790         }
791         if(this.bbar){
792             this.elements += ',bbar';
793             this.bottomToolbar = this.createToolbar(this.bbar);
794             delete this.bbar;
795         }
796
797         if(this.header === true){
798             this.elements += ',header';
799             delete this.header;
800         }else if(this.headerCfg || (this.title && this.header !== false)){
801             this.elements += ',header';
802         }
803
804         if(this.footerCfg || this.footer === true){
805             this.elements += ',footer';
806             delete this.footer;
807         }
808
809         if(this.buttons){
810             this.fbar = this.buttons;
811             delete this.buttons;
812         }
813         if(this.fbar){
814             this.createFbar(this.fbar);
815         }
816         if(this.autoLoad){
817             this.on('render', this.doAutoLoad, this, {delay:10});
818         }
819     },
820
821     // private
822     createFbar : function(fbar){
823         var min = this.minButtonWidth;
824         this.elements += ',footer';
825         this.fbar = this.createToolbar(fbar, {
826             buttonAlign: this.buttonAlign,
827             toolbarCls: 'x-panel-fbar',
828             enableOverflow: false,
829             defaults: function(c){
830                 return {
831                     minWidth: c.minWidth || min
832                 };
833             }
834         });
835         //@compat addButton and buttons could possibly be removed
836         //@target 4.0
837         <div id="prop-Ext.Panel-buttons"></div>/**
838          * This Panel's Array of buttons as created from the <code>{@link #buttons}</code>
839          * config property. Read only.
840          * @type Array
841          * @property buttons
842          */
843         this.fbar.items.each(function(c){
844             c.minWidth = c.minWidth || this.minButtonWidth;
845         }, this);
846         this.buttons = this.fbar.items.items;
847     },
848
849     // private
850     createToolbar: function(tb, options){
851         var result;
852         // Convert array to proper toolbar config
853         if(Ext.isArray(tb)){
854             tb = {
855                 items: tb
856             };
857         }
858         result = tb.events ? Ext.apply(tb, options) : this.createComponent(Ext.apply({}, tb, options), 'toolbar');
859         result.ownerCt = this;
860         result.bufferResize = false;
861         this.toolbars.push(result);
862         return result;
863     },
864
865     // private
866     createElement : function(name, pnode){
867         if(this[name]){
868             pnode.appendChild(this[name].dom);
869             return;
870         }
871
872         if(name === 'bwrap' || this.elements.indexOf(name) != -1){
873             if(this[name+'Cfg']){
874                 this[name] = Ext.fly(pnode).createChild(this[name+'Cfg']);
875             }else{
876                 var el = document.createElement('div');
877                 el.className = this[name+'Cls'];
878                 this[name] = Ext.get(pnode.appendChild(el));
879             }
880             if(this[name+'CssClass']){
881                 this[name].addClass(this[name+'CssClass']);
882             }
883             if(this[name+'Style']){
884                 this[name].applyStyles(this[name+'Style']);
885             }
886         }
887     },
888
889     // private
890     onRender : function(ct, position){
891         Ext.Panel.superclass.onRender.call(this, ct, position);
892         this.createClasses();
893
894         var el = this.el,
895             d = el.dom,
896             bw,
897             ts;
898
899
900         if(this.collapsible && !this.hideCollapseTool){
901             this.tools = this.tools ? this.tools.slice(0) : [];
902             this.tools[this.collapseFirst?'unshift':'push']({
903                 id: 'toggle',
904                 handler : this.toggleCollapse,
905                 scope: this
906             });
907         }
908
909         if(this.tools){
910             ts = this.tools;
911             this.elements += (this.header !== false) ? ',header' : '';
912         }
913         this.tools = {};
914
915         el.addClass(this.baseCls);
916         if(d.firstChild){ // existing markup
917             this.header = el.down('.'+this.headerCls);
918             this.bwrap = el.down('.'+this.bwrapCls);
919             var cp = this.bwrap ? this.bwrap : el;
920             this.tbar = cp.down('.'+this.tbarCls);
921             this.body = cp.down('.'+this.bodyCls);
922             this.bbar = cp.down('.'+this.bbarCls);
923             this.footer = cp.down('.'+this.footerCls);
924             this.fromMarkup = true;
925         }
926         if (this.preventBodyReset === true) {
927             el.addClass('x-panel-reset');
928         }
929         if(this.cls){
930             el.addClass(this.cls);
931         }
932
933         if(this.buttons){
934             this.elements += ',footer';
935         }
936
937         // This block allows for maximum flexibility and performance when using existing markup
938
939         // framing requires special markup
940         if(this.frame){
941             el.insertHtml('afterBegin', String.format(Ext.Element.boxMarkup, this.baseCls));
942
943             this.createElement('header', d.firstChild.firstChild.firstChild);
944             this.createElement('bwrap', d);
945
946             // append the mid and bottom frame to the bwrap
947             bw = this.bwrap.dom;
948             var ml = d.childNodes[1], bl = d.childNodes[2];
949             bw.appendChild(ml);
950             bw.appendChild(bl);
951
952             var mc = bw.firstChild.firstChild.firstChild;
953             this.createElement('tbar', mc);
954             this.createElement('body', mc);
955             this.createElement('bbar', mc);
956             this.createElement('footer', bw.lastChild.firstChild.firstChild);
957
958             if(!this.footer){
959                 this.bwrap.dom.lastChild.className += ' x-panel-nofooter';
960             }
961             /*
962              * Store a reference to this element so:
963              * a) We aren't looking it up all the time
964              * b) The last element is reported incorrectly when using a loadmask
965              */
966             this.ft = Ext.get(this.bwrap.dom.lastChild);
967             this.mc = Ext.get(mc);
968         }else{
969             this.createElement('header', d);
970             this.createElement('bwrap', d);
971
972             // append the mid and bottom frame to the bwrap
973             bw = this.bwrap.dom;
974             this.createElement('tbar', bw);
975             this.createElement('body', bw);
976             this.createElement('bbar', bw);
977             this.createElement('footer', bw);
978
979             if(!this.header){
980                 this.body.addClass(this.bodyCls + '-noheader');
981                 if(this.tbar){
982                     this.tbar.addClass(this.tbarCls + '-noheader');
983                 }
984             }
985         }
986
987         if(Ext.isDefined(this.padding)){
988             this.body.setStyle('padding', this.body.addUnits(this.padding));
989         }
990
991         if(this.border === false){
992             this.el.addClass(this.baseCls + '-noborder');
993             this.body.addClass(this.bodyCls + '-noborder');
994             if(this.header){
995                 this.header.addClass(this.headerCls + '-noborder');
996             }
997             if(this.footer){
998                 this.footer.addClass(this.footerCls + '-noborder');
999             }
1000             if(this.tbar){
1001                 this.tbar.addClass(this.tbarCls + '-noborder');
1002             }
1003             if(this.bbar){
1004                 this.bbar.addClass(this.bbarCls + '-noborder');
1005             }
1006         }
1007
1008         if(this.bodyBorder === false){
1009            this.body.addClass(this.bodyCls + '-noborder');
1010         }
1011
1012         this.bwrap.enableDisplayMode('block');
1013
1014         if(this.header){
1015             this.header.unselectable();
1016
1017             // for tools, we need to wrap any existing header markup
1018             if(this.headerAsText){
1019                 this.header.dom.innerHTML =
1020                     '<span class="' + this.headerTextCls + '">'+this.header.dom.innerHTML+'</span>';
1021
1022                 if(this.iconCls){
1023                     this.setIconClass(this.iconCls);
1024                 }
1025             }
1026         }
1027
1028         if(this.floating){
1029             this.makeFloating(this.floating);
1030         }
1031
1032         if(this.collapsible && this.titleCollapse && this.header){
1033             this.mon(this.header, 'click', this.toggleCollapse, this);
1034             this.header.setStyle('cursor', 'pointer');
1035         }
1036         if(ts){
1037             this.addTool.apply(this, ts);
1038         }
1039         if(this.fbar){
1040             this.footer.addClass('x-panel-btns');
1041             this.fbar.render(this.footer);
1042             this.footer.createChild({cls:'x-clear'});
1043         }
1044
1045         if(this.tbar && this.topToolbar){
1046             this.topToolbar.render(this.tbar);
1047         }
1048         if(this.bbar && this.bottomToolbar){
1049             this.bottomToolbar.render(this.bbar);
1050
1051         }
1052     },
1053
1054     <div id="method-Ext.Panel-setIconClass"></div>/**
1055      * Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
1056      * icon class if one has already been set and fire the {@link #iconchange} event after completion.
1057      * @param {String} cls The new CSS class name
1058      */
1059     setIconClass : function(cls){
1060         var old = this.iconCls;
1061         this.iconCls = cls;
1062         if(this.rendered && this.header){
1063             if(this.frame){
1064                 this.header.addClass('x-panel-icon');
1065                 this.header.replaceClass(old, this.iconCls);
1066             }else{
1067                 var hd = this.header,
1068                     img = hd.child('img.x-panel-inline-icon');
1069                 if(img){
1070                     Ext.fly(img).replaceClass(old, this.iconCls);
1071                 }else{
1072                     Ext.DomHelper.insertBefore(hd.dom.firstChild, {
1073                         tag:'img', src: Ext.BLANK_IMAGE_URL, cls:'x-panel-inline-icon '+this.iconCls
1074                     });
1075                  }
1076             }
1077         }
1078         this.fireEvent('iconchange', this, cls, old);
1079     },
1080
1081     // private
1082     makeFloating : function(cfg){
1083         this.floating = true;
1084         this.el = new Ext.Layer(Ext.apply({}, cfg, {
1085             shadow: Ext.isDefined(this.shadow) ? this.shadow : 'sides',
1086             shadowOffset: this.shadowOffset,
1087             constrain:false,
1088             shim: this.shim === false ? false : undefined
1089         }), this.el);
1090     },
1091
1092     <div id="method-Ext.Panel-getTopToolbar"></div>/**
1093      * Returns the {@link Ext.Toolbar toolbar} from the top (<code>{@link #tbar}</code>) section of the panel.
1094      * @return {Ext.Toolbar} The toolbar
1095      */
1096     getTopToolbar : function(){
1097         return this.topToolbar;
1098     },
1099
1100     <div id="method-Ext.Panel-getBottomToolbar"></div>/**
1101      * Returns the {@link Ext.Toolbar toolbar} from the bottom (<code>{@link #bbar}</code>) section of the panel.
1102      * @return {Ext.Toolbar} The toolbar
1103      */
1104     getBottomToolbar : function(){
1105         return this.bottomToolbar;
1106     },
1107
1108     <div id="method-Ext.Panel-addButton"></div>/**
1109      * Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1110      * approach is to add buttons via the {@link #buttons} config.
1111      * @param {String/Object} config A valid {@link Ext.Button} config.  A string will become the text for a default
1112      * button config, an object will be treated as a button config object.
1113      * @param {Function} handler The function to be called on button {@link Ext.Button#click}
1114      * @param {Object} scope The scope (<code>this</code> reference) in which the button handler function is executed. Defaults to the Button.
1115      * @return {Ext.Button} The button that was added
1116      */
1117     addButton : function(config, handler, scope){
1118         if(!this.fbar){
1119             this.createFbar([]);
1120         }
1121         if(handler){
1122             if(Ext.isString(config)){
1123                 config = {text: config};
1124             }
1125             config = Ext.apply({
1126                 handler: handler,
1127                 scope: scope
1128             }, config)
1129         }
1130         return this.fbar.add(config);
1131     },
1132
1133     // private
1134     addTool : function(){
1135         if(!this.rendered){
1136             if(!this.tools){
1137                 this.tools = [];
1138             }
1139             Ext.each(arguments, function(arg){
1140                 this.tools.push(arg)
1141             }, this);
1142             return;
1143         }
1144          // nowhere to render tools!
1145         if(!this[this.toolTarget]){
1146             return;
1147         }
1148         if(!this.toolTemplate){
1149             // initialize the global tool template on first use
1150             var tt = new Ext.Template(
1151                  '<div class="x-tool x-tool-{id}">&#160;</div>'
1152             );
1153             tt.disableFormats = true;
1154             tt.compile();
1155             Ext.Panel.prototype.toolTemplate = tt;
1156         }
1157         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
1158             var tc = a[i];
1159             if(!this.tools[tc.id]){
1160                 var overCls = 'x-tool-'+tc.id+'-over';
1161                 var t = this.toolTemplate.insertFirst((tc.align !== 'left') ? this[this.toolTarget] : this[this.toolTarget].child('span'), tc, true);
1162                 this.tools[tc.id] = t;
1163                 t.enableDisplayMode('block');
1164                 this.mon(t, 'click',  this.createToolHandler(t, tc, overCls, this));
1165                 if(tc.on){
1166                     this.mon(t, tc.on);
1167                 }
1168                 if(tc.hidden){
1169                     t.hide();
1170                 }
1171                 if(tc.qtip){
1172                     if(Ext.isObject(tc.qtip)){
1173                         Ext.QuickTips.register(Ext.apply({
1174                               target: t.id
1175                         }, tc.qtip));
1176                     } else {
1177                         t.dom.qtip = tc.qtip;
1178                     }
1179                 }
1180                 t.addClassOnOver(overCls);
1181             }
1182         }
1183     },
1184
1185     onLayout : function(shallow, force){
1186         if(this.hasLayout && this.toolbars.length > 0){
1187             Ext.each(this.toolbars, function(tb){
1188                 tb.doLayout(undefined, force);
1189             });
1190             this.syncHeight();
1191         }
1192     },
1193
1194     syncHeight : function(){
1195         var h = this.toolbarHeight,
1196                 bd = this.body,
1197                 lsh = this.lastSize.height,
1198                 sz;
1199
1200         if(this.autoHeight || !Ext.isDefined(lsh) || lsh == 'auto'){
1201             return;
1202         }
1203
1204
1205         if(h != this.getToolbarHeight()){
1206             h = Math.max(0, this.adjustBodyHeight(lsh - this.getFrameHeight()));
1207             bd.setHeight(h);
1208             sz = bd.getSize();
1209             this.toolbarHeight = this.getToolbarHeight();
1210             this.onBodyResize(sz.width, sz.height);
1211         }
1212     },
1213
1214     // private
1215     onShow : function(){
1216         if(this.floating){
1217             return this.el.show();
1218         }
1219         Ext.Panel.superclass.onShow.call(this);
1220     },
1221
1222     // private
1223     onHide : function(){
1224         if(this.floating){
1225             return this.el.hide();
1226         }
1227         Ext.Panel.superclass.onHide.call(this);
1228     },
1229
1230     // private
1231     createToolHandler : function(t, tc, overCls, panel){
1232         return function(e){
1233             t.removeClass(overCls);
1234             if(tc.stopEvent !== false){
1235                 e.stopEvent();
1236             }
1237             if(tc.handler){
1238                 tc.handler.call(tc.scope || t, e, t, panel, tc);
1239             }
1240         };
1241     },
1242
1243     // private    
1244     afterRender : function(){
1245         if(this.floating && !this.hidden){
1246             this.el.show();
1247         }
1248         if(this.title){
1249             this.setTitle(this.title);
1250         }
1251         if(this.collapsed){
1252             this.collapsed = false;
1253             this.collapse(false);
1254         }
1255         Ext.Panel.superclass.afterRender.call(this); // do sizing calcs last
1256         this.initEvents();
1257     },    
1258
1259     // private
1260     getKeyMap : function(){
1261         if(!this.keyMap){
1262             this.keyMap = new Ext.KeyMap(this.el, this.keys);
1263         }
1264         return this.keyMap;
1265     },
1266
1267     // private
1268     initEvents : function(){
1269         if(this.keys){
1270             this.getKeyMap();
1271         }
1272         if(this.draggable){
1273             this.initDraggable();
1274         }
1275         if(this.toolbars.length > 0){
1276             Ext.each(this.toolbars, function(tb){
1277                 tb.doLayout();
1278                 tb.on({
1279                     scope: this,
1280                     afterlayout: this.syncHeight,
1281                     remove: this.syncHeight
1282                 });
1283             }, this);
1284             if(!this.ownerCt){
1285                 this.syncHeight();
1286             }
1287         }
1288
1289     },
1290
1291     // private
1292     initDraggable : function(){
1293         <div id="prop-Ext.Panel-dd"></div>/**
1294          * <p>If this Panel is configured {@link #draggable}, this property will contain
1295          * an instance of {@link Ext.dd.DragSource} which handles dragging the Panel.</p>
1296          * The developer must provide implementations of the abstract methods of {@link Ext.dd.DragSource}
1297          * in order to supply behaviour for each stage of the drag/drop process. See {@link #draggable}.
1298          * @type Ext.dd.DragSource.
1299          * @property dd
1300          */
1301         this.dd = new Ext.Panel.DD(this, Ext.isBoolean(this.draggable) ? null : this.draggable);
1302     },
1303
1304     // private
1305     beforeEffect : function(anim){
1306         if(this.floating){
1307             this.el.beforeAction();
1308         }
1309         if(anim !== false){
1310             this.el.addClass('x-panel-animated');
1311         }
1312     },
1313
1314     // private
1315     afterEffect : function(anim){
1316         this.syncShadow();
1317         if(anim !== false){
1318             this.el.removeClass('x-panel-animated');
1319         }
1320     },
1321
1322     // private - wraps up an animation param with internal callbacks
1323     createEffect : function(a, cb, scope){
1324         var o = {
1325             scope:scope,
1326             block:true
1327         };
1328         if(a === true){
1329             o.callback = cb;
1330             return o;
1331         }else if(!a.callback){
1332             o.callback = cb;
1333         }else { // wrap it up
1334             o.callback = function(){
1335                 cb.call(scope);
1336                 Ext.callback(a.callback, a.scope);
1337             };
1338         }
1339         return Ext.applyIf(o, a);
1340     },
1341
1342     <div id="method-Ext.Panel-collapse"></div>/**
1343      * Collapses the panel body so that it becomes hidden.  Fires the {@link #beforecollapse} event which will
1344      * cancel the collapse action if it returns false.
1345      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
1346      * {@link #animCollapse} panel config)
1347      * @return {Ext.Panel} this
1348      */
1349     collapse : function(animate){
1350         if(this.collapsed || this.el.hasFxBlock() || this.fireEvent('beforecollapse', this, animate) === false){
1351             return;
1352         }
1353         var doAnim = animate === true || (animate !== false && this.animCollapse);
1354         this.beforeEffect(doAnim);
1355         this.onCollapse(doAnim, animate);
1356         return this;
1357     },
1358
1359     // private
1360     onCollapse : function(doAnim, animArg){
1361         if(doAnim){
1362             this[this.collapseEl].slideOut(this.slideAnchor,
1363                     Ext.apply(this.createEffect(animArg||true, this.afterCollapse, this),
1364                         this.collapseDefaults));
1365         }else{
1366             this[this.collapseEl].hide();
1367             this.afterCollapse(false);
1368         }
1369     },
1370
1371     // private
1372     afterCollapse : function(anim){
1373         this.collapsed = true;
1374         this.el.addClass(this.collapsedCls);
1375         this.afterEffect(anim);
1376         this.fireEvent('collapse', this);
1377     },
1378
1379     <div id="method-Ext.Panel-expand"></div>/**
1380      * Expands the panel body so that it becomes visible.  Fires the {@link #beforeexpand} event which will
1381      * cancel the expand action if it returns false.
1382      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
1383      * {@link #animCollapse} panel config)
1384      * @return {Ext.Panel} this
1385      */
1386     expand : function(animate){
1387         if(!this.collapsed || this.el.hasFxBlock() || this.fireEvent('beforeexpand', this, animate) === false){
1388             return;
1389         }
1390         var doAnim = animate === true || (animate !== false && this.animCollapse);
1391         this.el.removeClass(this.collapsedCls);
1392         this.beforeEffect(doAnim);
1393         this.onExpand(doAnim, animate);
1394         return this;
1395     },
1396
1397     // private
1398     onExpand : function(doAnim, animArg){
1399         if(doAnim){
1400             this[this.collapseEl].slideIn(this.slideAnchor,
1401                     Ext.apply(this.createEffect(animArg||true, this.afterExpand, this),
1402                         this.expandDefaults));
1403         }else{
1404             this[this.collapseEl].show();
1405             this.afterExpand(false);
1406         }
1407     },
1408
1409     // private
1410     afterExpand : function(anim){
1411         this.collapsed = false;
1412         this.afterEffect(anim);
1413         if(Ext.isDefined(this.deferLayout)){
1414             this.doLayout(true);
1415         }
1416         this.fireEvent('expand', this);
1417     },
1418
1419     <div id="method-Ext.Panel-toggleCollapse"></div>/**
1420      * Shortcut for performing an {@link #expand} or {@link #collapse} based on the current state of the panel.
1421      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
1422      * {@link #animCollapse} panel config)
1423      * @return {Ext.Panel} this
1424      */
1425     toggleCollapse : function(animate){
1426         this[this.collapsed ? 'expand' : 'collapse'](animate);
1427         return this;
1428     },
1429
1430     // private
1431     onDisable : function(){
1432         if(this.rendered && this.maskDisabled){
1433             this.el.mask();
1434         }
1435         Ext.Panel.superclass.onDisable.call(this);
1436     },
1437
1438     // private
1439     onEnable : function(){
1440         if(this.rendered && this.maskDisabled){
1441             this.el.unmask();
1442         }
1443         Ext.Panel.superclass.onEnable.call(this);
1444     },
1445
1446     // private
1447     onResize : function(w, h){
1448         if(Ext.isDefined(w) || Ext.isDefined(h)){
1449             if(!this.collapsed){
1450                 // First, set the the Panel's body width.
1451                 // If we have auto-widthed it, get the resulting full offset width so we can size the Toolbars to match
1452                 // The Toolbars must not buffer this resize operation because we need to know their heights.
1453
1454                 if(Ext.isNumber(w)){
1455                     this.body.setWidth(w = this.adjustBodyWidth(w - this.getFrameWidth()));
1456                 } else if (w == 'auto') {
1457                     w = this.body.setWidth('auto').dom.offsetWidth;
1458                 } else {
1459                     w = this.body.dom.offsetWidth;
1460                 }
1461
1462                 if(this.tbar){
1463                     this.tbar.setWidth(w);
1464                     if(this.topToolbar){
1465                         this.topToolbar.setSize(w);
1466                     }
1467                 }
1468                 if(this.bbar){
1469                     this.bbar.setWidth(w);
1470                     if(this.bottomToolbar){
1471                         this.bottomToolbar.setSize(w);
1472                         // The bbar does not move on resize without this.
1473                         if (Ext.isIE) {
1474                             this.bbar.setStyle('position', 'static');
1475                             this.bbar.setStyle('position', '');
1476                         }
1477                     }
1478                 }
1479                 if(this.footer){
1480                     this.footer.setWidth(w);
1481                     if(this.fbar){
1482                         this.fbar.setSize(Ext.isIE ? (w - this.footer.getFrameWidth('lr')) : 'auto');
1483                     }
1484                 }
1485
1486                 // At this point, the Toolbars must be layed out for getFrameHeight to find a result.
1487                 if(Ext.isNumber(h)){
1488                     h = Math.max(0, this.adjustBodyHeight(h - this.getFrameHeight()));
1489                     this.body.setHeight(h);
1490                 }else if(h == 'auto'){
1491                     this.body.setHeight(h);
1492                 }
1493
1494                 if(this.disabled && this.el._mask){
1495                     this.el._mask.setSize(this.el.dom.clientWidth, this.el.getHeight());
1496                 }
1497             }else{
1498                 this.queuedBodySize = {width: w, height: h};
1499                 if(!this.queuedExpand && this.allowQueuedExpand !== false){
1500                     this.queuedExpand = true;
1501                     this.on('expand', function(){
1502                         delete this.queuedExpand;
1503                         this.onResize(this.queuedBodySize.width, this.queuedBodySize.height);
1504                     }, this, {single:true});
1505                 }
1506             }
1507             this.onBodyResize(w, h);
1508         }
1509         this.syncShadow();
1510         Ext.Panel.superclass.onResize.call(this);
1511     },
1512
1513     // private
1514     onBodyResize: function(w, h){
1515         this.fireEvent('bodyresize', this, w, h);
1516     },
1517
1518     // private
1519     getToolbarHeight: function(){
1520         var h = 0;
1521         if(this.rendered){
1522             Ext.each(this.toolbars, function(tb){
1523                 h += tb.getHeight();
1524             }, this);
1525         }
1526         return h;
1527     },
1528
1529     // private
1530     adjustBodyHeight : function(h){
1531         return h;
1532     },
1533
1534     // private
1535     adjustBodyWidth : function(w){
1536         return w;
1537     },
1538
1539     // private
1540     onPosition : function(){
1541         this.syncShadow();
1542     },
1543
1544     <div id="method-Ext.Panel-getFrameWidth"></div>/**
1545      * Returns the width in pixels of the framing elements of this panel (not including the body width).  To
1546      * retrieve the body width see {@link #getInnerWidth}.
1547      * @return {Number} The frame width
1548      */
1549     getFrameWidth : function(){
1550         var w = this.el.getFrameWidth('lr') + this.bwrap.getFrameWidth('lr');
1551
1552         if(this.frame){
1553             var l = this.bwrap.dom.firstChild;
1554             w += (Ext.fly(l).getFrameWidth('l') + Ext.fly(l.firstChild).getFrameWidth('r'));
1555             w += this.mc.getFrameWidth('lr');
1556         }
1557         return w;
1558     },
1559
1560     <div id="method-Ext.Panel-getFrameHeight"></div>/**
1561      * Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
1562      * header and footer elements, but not including the body height).  To retrieve the body height see {@link #getInnerHeight}.
1563      * @return {Number} The frame height
1564      */
1565     getFrameHeight : function(){
1566         var h  = this.el.getFrameWidth('tb') + this.bwrap.getFrameWidth('tb');
1567         h += (this.tbar ? this.tbar.getHeight() : 0) +
1568              (this.bbar ? this.bbar.getHeight() : 0);
1569
1570         if(this.frame){
1571             h += this.el.dom.firstChild.offsetHeight + this.ft.dom.offsetHeight + this.mc.getFrameWidth('tb');
1572         }else{
1573             h += (this.header ? this.header.getHeight() : 0) +
1574                 (this.footer ? this.footer.getHeight() : 0);
1575         }
1576         return h;
1577     },
1578
1579     <div id="method-Ext.Panel-getInnerWidth"></div>/**
1580      * Returns the width in pixels of the body element (not including the width of any framing elements).
1581      * For the frame width see {@link #getFrameWidth}.
1582      * @return {Number} The body width
1583      */
1584     getInnerWidth : function(){
1585         return this.getSize().width - this.getFrameWidth();
1586     },
1587
1588     <div id="method-Ext.Panel-getInnerHeight"></div>/**
1589      * Returns the height in pixels of the body element (not including the height of any framing elements).
1590      * For the frame height see {@link #getFrameHeight}.
1591      * @return {Number} The body height
1592      */
1593     getInnerHeight : function(){
1594         return this.getSize().height - this.getFrameHeight();
1595     },
1596
1597     // private
1598     syncShadow : function(){
1599         if(this.floating){
1600             this.el.sync(true);
1601         }
1602     },
1603
1604     // private
1605     getLayoutTarget : function(){
1606         return this.body;
1607     },
1608
1609     // private
1610     getContentTarget : function(){
1611         return this.body;
1612     },
1613
1614     <div id="method-Ext.Panel-setTitle"></div>/**
1615      * <p>Sets the title text for the panel and optionally the {@link #iconCls icon class}.</p>
1616      * <p>In order to be able to set the title, a header element must have been created
1617      * for the Panel. This is triggered either by configuring the Panel with a non-blank <code>{@link #title}</code>,
1618      * or configuring it with <code><b>{@link #header}: true</b></code>.</p>
1619      * @param {String} title The title text to set
1620      * @param {String} iconCls (optional) {@link #iconCls iconCls} A user-defined CSS class that provides the icon image for this panel
1621      */
1622     setTitle : function(title, iconCls){
1623         this.title = title;
1624         if(this.header && this.headerAsText){
1625             this.header.child('span').update(title);
1626         }
1627         if(iconCls){
1628             this.setIconClass(iconCls);
1629         }
1630         this.fireEvent('titlechange', this, title);
1631         return this;
1632     },
1633
1634     <div id="method-Ext.Panel-getUpdater"></div>/**
1635      * Get the {@link Ext.Updater} for this panel. Enables you to perform Ajax updates of this panel's body.
1636      * @return {Ext.Updater} The Updater
1637      */
1638     getUpdater : function(){
1639         return this.body.getUpdater();
1640     },
1641
1642      <div id="method-Ext.Panel-load"></div>/**
1643      * Loads this content panel immediately with content returned from an XHR call.
1644      * @param {Object/String/Function} config A config object containing any of the following options:
1645 <pre><code>
1646 panel.load({
1647     url: 'your-url.php',
1648     params: {param1: 'foo', param2: 'bar'}, // or a URL encoded string
1649     callback: yourFunction,
1650     scope: yourObject, // optional scope for the callback
1651     discardUrl: false,
1652     nocache: false,
1653     text: 'Loading...',
1654     timeout: 30,
1655     scripts: false
1656 });
1657 </code></pre>
1658      * The only required property is url. The optional properties nocache, text and scripts
1659      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their
1660      * associated property on this panel Updater instance.
1661      * @return {Ext.Panel} this
1662      */
1663     load : function(){
1664         var um = this.body.getUpdater();
1665         um.update.apply(um, arguments);
1666         return this;
1667     },
1668
1669     // private
1670     beforeDestroy : function(){
1671         Ext.Panel.superclass.beforeDestroy.call(this);
1672         if(this.header){
1673             this.header.removeAllListeners();
1674         }
1675         if(this.tools){
1676             for(var k in this.tools){
1677                 Ext.destroy(this.tools[k]);
1678             }
1679         }
1680         if(Ext.isArray(this.buttons)){
1681             while(this.buttons.length) {
1682                 Ext.destroy(this.buttons[0]);
1683             }
1684         }
1685         if(this.rendered){
1686             Ext.destroy(
1687                 this.ft,
1688                 this.header,
1689                 this.footer,
1690                 this.toolbars,
1691                 this.tbar,
1692                 this.bbar,
1693                 this.body,
1694                 this.mc,
1695                 this.bwrap
1696             );
1697             if (this.fbar) {
1698                 Ext.destroy(
1699                     this.fbar,
1700                     this.fbar.el
1701                 );
1702             }
1703         }else{
1704             Ext.destroy(
1705                 this.topToolbar,
1706                 this.bottomToolbar
1707             );
1708         }
1709     },
1710
1711     // private
1712     createClasses : function(){
1713         this.headerCls = this.baseCls + '-header';
1714         this.headerTextCls = this.baseCls + '-header-text';
1715         this.bwrapCls = this.baseCls + '-bwrap';
1716         this.tbarCls = this.baseCls + '-tbar';
1717         this.bodyCls = this.baseCls + '-body';
1718         this.bbarCls = this.baseCls + '-bbar';
1719         this.footerCls = this.baseCls + '-footer';
1720     },
1721
1722     // private
1723     createGhost : function(cls, useShim, appendTo){
1724         var el = document.createElement('div');
1725         el.className = 'x-panel-ghost ' + (cls ? cls : '');
1726         if(this.header){
1727             el.appendChild(this.el.dom.firstChild.cloneNode(true));
1728         }
1729         Ext.fly(el.appendChild(document.createElement('ul'))).setHeight(this.bwrap.getHeight());
1730         el.style.width = this.el.dom.offsetWidth + 'px';;
1731         if(!appendTo){
1732             this.container.dom.appendChild(el);
1733         }else{
1734             Ext.getDom(appendTo).appendChild(el);
1735         }
1736         if(useShim !== false && this.el.useShim !== false){
1737             var layer = new Ext.Layer({shadow:false, useDisplay:true, constrain:false}, el);
1738             layer.show();
1739             return layer;
1740         }else{
1741             return new Ext.Element(el);
1742         }
1743     },
1744
1745     // private
1746     doAutoLoad : function(){
1747         var u = this.body.getUpdater();
1748         if(this.renderer){
1749             u.setRenderer(this.renderer);
1750         }
1751         u.update(Ext.isObject(this.autoLoad) ? this.autoLoad : {url: this.autoLoad});
1752     },
1753
1754     <div id="method-Ext.Panel-getTool"></div>/**
1755      * Retrieve a tool by id.
1756      * @param {String} id
1757      * @return {Object} tool
1758      */
1759     getTool : function(id) {
1760         return this.tools[id];
1761     }
1762
1763 <div id="cfg-Ext.Panel-autoEl"></div>/**
1764  * @cfg {String} autoEl @hide
1765  */
1766 });
1767 Ext.reg('panel', Ext.Panel);
1768 </pre>    \r
1769 </body>\r
1770 </html>