Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[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 body's new width.
698              * @param {Number} height The Panel body'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         this.toolbars.push(result);
860         return result;
861     },
862
863     // private
864     createElement : function(name, pnode){
865         if(this[name]){
866             pnode.appendChild(this[name].dom);
867             return;
868         }
869
870         if(name === 'bwrap' || this.elements.indexOf(name) != -1){
871             if(this[name+'Cfg']){
872                 this[name] = Ext.fly(pnode).createChild(this[name+'Cfg']);
873             }else{
874                 var el = document.createElement('div');
875                 el.className = this[name+'Cls'];
876                 this[name] = Ext.get(pnode.appendChild(el));
877             }
878             if(this[name+'CssClass']){
879                 this[name].addClass(this[name+'CssClass']);
880             }
881             if(this[name+'Style']){
882                 this[name].applyStyles(this[name+'Style']);
883             }
884         }
885     },
886
887     // private
888     onRender : function(ct, position){
889         Ext.Panel.superclass.onRender.call(this, ct, position);
890         this.createClasses();
891
892         var el = this.el,
893             d = el.dom,
894             bw,
895             ts;
896
897
898         if(this.collapsible && !this.hideCollapseTool){
899             this.tools = this.tools ? this.tools.slice(0) : [];
900             this.tools[this.collapseFirst?'unshift':'push']({
901                 id: 'toggle',
902                 handler : this.toggleCollapse,
903                 scope: this
904             });
905         }
906
907         if(this.tools){
908             ts = this.tools;
909             this.elements += (this.header !== false) ? ',header' : '';
910         }
911         this.tools = {};
912
913         el.addClass(this.baseCls);
914         if(d.firstChild){ // existing markup
915             this.header = el.down('.'+this.headerCls);
916             this.bwrap = el.down('.'+this.bwrapCls);
917             var cp = this.bwrap ? this.bwrap : el;
918             this.tbar = cp.down('.'+this.tbarCls);
919             this.body = cp.down('.'+this.bodyCls);
920             this.bbar = cp.down('.'+this.bbarCls);
921             this.footer = cp.down('.'+this.footerCls);
922             this.fromMarkup = true;
923         }
924         if (this.preventBodyReset === true) {
925             el.addClass('x-panel-reset');
926         }
927         if(this.cls){
928             el.addClass(this.cls);
929         }
930
931         if(this.buttons){
932             this.elements += ',footer';
933         }
934
935         // This block allows for maximum flexibility and performance when using existing markup
936
937         // framing requires special markup
938         if(this.frame){
939             el.insertHtml('afterBegin', String.format(Ext.Element.boxMarkup, this.baseCls));
940
941             this.createElement('header', d.firstChild.firstChild.firstChild);
942             this.createElement('bwrap', d);
943
944             // append the mid and bottom frame to the bwrap
945             bw = this.bwrap.dom;
946             var ml = d.childNodes[1], bl = d.childNodes[2];
947             bw.appendChild(ml);
948             bw.appendChild(bl);
949
950             var mc = bw.firstChild.firstChild.firstChild;
951             this.createElement('tbar', mc);
952             this.createElement('body', mc);
953             this.createElement('bbar', mc);
954             this.createElement('footer', bw.lastChild.firstChild.firstChild);
955
956             if(!this.footer){
957                 this.bwrap.dom.lastChild.className += ' x-panel-nofooter';
958             }
959             /*
960              * Store a reference to this element so:
961              * a) We aren't looking it up all the time
962              * b) The last element is reported incorrectly when using a loadmask
963              */
964             this.ft = Ext.get(this.bwrap.dom.lastChild);
965             this.mc = Ext.get(mc);
966         }else{
967             this.createElement('header', d);
968             this.createElement('bwrap', d);
969
970             // append the mid and bottom frame to the bwrap
971             bw = this.bwrap.dom;
972             this.createElement('tbar', bw);
973             this.createElement('body', bw);
974             this.createElement('bbar', bw);
975             this.createElement('footer', bw);
976
977             if(!this.header){
978                 this.body.addClass(this.bodyCls + '-noheader');
979                 if(this.tbar){
980                     this.tbar.addClass(this.tbarCls + '-noheader');
981                 }
982             }
983         }
984
985         if(Ext.isDefined(this.padding)){
986             this.body.setStyle('padding', this.body.addUnits(this.padding));
987         }
988
989         if(this.border === false){
990             this.el.addClass(this.baseCls + '-noborder');
991             this.body.addClass(this.bodyCls + '-noborder');
992             if(this.header){
993                 this.header.addClass(this.headerCls + '-noborder');
994             }
995             if(this.footer){
996                 this.footer.addClass(this.footerCls + '-noborder');
997             }
998             if(this.tbar){
999                 this.tbar.addClass(this.tbarCls + '-noborder');
1000             }
1001             if(this.bbar){
1002                 this.bbar.addClass(this.bbarCls + '-noborder');
1003             }
1004         }
1005
1006         if(this.bodyBorder === false){
1007            this.body.addClass(this.bodyCls + '-noborder');
1008         }
1009
1010         this.bwrap.enableDisplayMode('block');
1011
1012         if(this.header){
1013             this.header.unselectable();
1014
1015             // for tools, we need to wrap any existing header markup
1016             if(this.headerAsText){
1017                 this.header.dom.innerHTML =
1018                     '<span class="' + this.headerTextCls + '">'+this.header.dom.innerHTML+'</span>';
1019
1020                 if(this.iconCls){
1021                     this.setIconClass(this.iconCls);
1022                 }
1023             }
1024         }
1025
1026         if(this.floating){
1027             this.makeFloating(this.floating);
1028         }
1029
1030         if(this.collapsible && this.titleCollapse && this.header){
1031             this.mon(this.header, 'click', this.toggleCollapse, this);
1032             this.header.setStyle('cursor', 'pointer');
1033         }
1034         if(ts){
1035             this.addTool.apply(this, ts);
1036         }
1037
1038         // Render Toolbars.
1039         if(this.fbar){
1040             this.footer.addClass('x-panel-btns');
1041             this.fbar.ownerCt = this;
1042             this.fbar.render(this.footer);
1043             this.footer.createChild({cls:'x-clear'});
1044         }
1045         if(this.tbar && this.topToolbar){
1046             this.topToolbar.ownerCt = this;
1047             this.topToolbar.render(this.tbar);
1048         }
1049         if(this.bbar && this.bottomToolbar){
1050             this.bottomToolbar.ownerCt = this;
1051             this.bottomToolbar.render(this.bbar);
1052         }
1053     },
1054
1055     <div id="method-Ext.Panel-setIconClass"></div>/**
1056      * Sets the CSS class that provides the icon image for this panel.  This method will replace any existing
1057      * icon class if one has already been set and fire the {@link #iconchange} event after completion.
1058      * @param {String} cls The new CSS class name
1059      */
1060     setIconClass : function(cls){
1061         var old = this.iconCls;
1062         this.iconCls = cls;
1063         if(this.rendered && this.header){
1064             if(this.frame){
1065                 this.header.addClass('x-panel-icon');
1066                 this.header.replaceClass(old, this.iconCls);
1067             }else{
1068                 var hd = this.header,
1069                     img = hd.child('img.x-panel-inline-icon');
1070                 if(img){
1071                     Ext.fly(img).replaceClass(old, this.iconCls);
1072                 }else{
1073                     Ext.DomHelper.insertBefore(hd.dom.firstChild, {
1074                         tag:'img', src: Ext.BLANK_IMAGE_URL, cls:'x-panel-inline-icon '+this.iconCls
1075                     });
1076                  }
1077             }
1078         }
1079         this.fireEvent('iconchange', this, cls, old);
1080     },
1081
1082     // private
1083     makeFloating : function(cfg){
1084         this.floating = true;
1085         this.el = new Ext.Layer(Ext.apply({}, cfg, {
1086             shadow: Ext.isDefined(this.shadow) ? this.shadow : 'sides',
1087             shadowOffset: this.shadowOffset,
1088             constrain:false,
1089             shim: this.shim === false ? false : undefined
1090         }), this.el);
1091     },
1092
1093     <div id="method-Ext.Panel-getTopToolbar"></div>/**
1094      * Returns the {@link Ext.Toolbar toolbar} from the top (<code>{@link #tbar}</code>) section of the panel.
1095      * @return {Ext.Toolbar} The toolbar
1096      */
1097     getTopToolbar : function(){
1098         return this.topToolbar;
1099     },
1100
1101     <div id="method-Ext.Panel-getBottomToolbar"></div>/**
1102      * Returns the {@link Ext.Toolbar toolbar} from the bottom (<code>{@link #bbar}</code>) section of the panel.
1103      * @return {Ext.Toolbar} The toolbar
1104      */
1105     getBottomToolbar : function(){
1106         return this.bottomToolbar;
1107     },
1108
1109     <div id="method-Ext.Panel-addButton"></div>/**
1110      * Adds a button to this panel.  Note that this method must be called prior to rendering.  The preferred
1111      * approach is to add buttons via the {@link #buttons} config.
1112      * @param {String/Object} config A valid {@link Ext.Button} config.  A string will become the text for a default
1113      * button config, an object will be treated as a button config object.
1114      * @param {Function} handler The function to be called on button {@link Ext.Button#click}
1115      * @param {Object} scope The scope (<code>this</code> reference) in which the button handler function is executed. Defaults to the Button.
1116      * @return {Ext.Button} The button that was added
1117      */
1118     addButton : function(config, handler, scope){
1119         if(!this.fbar){
1120             this.createFbar([]);
1121         }
1122         if(handler){
1123             if(Ext.isString(config)){
1124                 config = {text: config};
1125             }
1126             config = Ext.apply({
1127                 handler: handler,
1128                 scope: scope
1129             }, config)
1130         }
1131         return this.fbar.add(config);
1132     },
1133
1134     // private
1135     addTool : function(){
1136         if(!this.rendered){
1137             if(!this.tools){
1138                 this.tools = [];
1139             }
1140             Ext.each(arguments, function(arg){
1141                 this.tools.push(arg)
1142             }, this);
1143             return;
1144         }
1145          // nowhere to render tools!
1146         if(!this[this.toolTarget]){
1147             return;
1148         }
1149         if(!this.toolTemplate){
1150             // initialize the global tool template on first use
1151             var tt = new Ext.Template(
1152                  '<div class="x-tool x-tool-{id}">&#160;</div>'
1153             );
1154             tt.disableFormats = true;
1155             tt.compile();
1156             Ext.Panel.prototype.toolTemplate = tt;
1157         }
1158         for(var i = 0, a = arguments, len = a.length; i < len; i++) {
1159             var tc = a[i];
1160             if(!this.tools[tc.id]){
1161                 var overCls = 'x-tool-'+tc.id+'-over';
1162                 var t = this.toolTemplate.insertFirst(this[this.toolTarget], tc, true);
1163                 this.tools[tc.id] = t;
1164                 t.enableDisplayMode('block');
1165                 this.mon(t, 'click',  this.createToolHandler(t, tc, overCls, this));
1166                 if(tc.on){
1167                     this.mon(t, tc.on);
1168                 }
1169                 if(tc.hidden){
1170                     t.hide();
1171                 }
1172                 if(tc.qtip){
1173                     if(Ext.isObject(tc.qtip)){
1174                         Ext.QuickTips.register(Ext.apply({
1175                               target: t.id
1176                         }, tc.qtip));
1177                     } else {
1178                         t.dom.qtip = tc.qtip;
1179                     }
1180                 }
1181                 t.addClassOnOver(overCls);
1182             }
1183         }
1184     },
1185
1186     onLayout : function(shallow, force){
1187         Ext.Panel.superclass.onLayout.apply(this, arguments);
1188         if(this.hasLayout && this.toolbars.length > 0){
1189             Ext.each(this.toolbars, function(tb){
1190                 tb.doLayout(undefined, force);
1191             });
1192             this.syncHeight();
1193         }
1194     },
1195
1196     syncHeight : function(){
1197         var h = this.toolbarHeight,
1198                 bd = this.body,
1199                 lsh = this.lastSize.height,
1200                 sz;
1201
1202         if(this.autoHeight || !Ext.isDefined(lsh) || lsh == 'auto'){
1203             return;
1204         }
1205
1206
1207         if(h != this.getToolbarHeight()){
1208             h = Math.max(0, this.adjustBodyHeight(lsh - this.getFrameHeight()));
1209             bd.setHeight(h);
1210             sz = bd.getSize();
1211             this.toolbarHeight = this.getToolbarHeight();
1212             this.onBodyResize(sz.width, sz.height);
1213         }
1214     },
1215
1216     // private
1217     onShow : function(){
1218         if(this.floating){
1219             return this.el.show();
1220         }
1221         Ext.Panel.superclass.onShow.call(this);
1222     },
1223
1224     // private
1225     onHide : function(){
1226         if(this.floating){
1227             return this.el.hide();
1228         }
1229         Ext.Panel.superclass.onHide.call(this);
1230     },
1231
1232     // private
1233     createToolHandler : function(t, tc, overCls, panel){
1234         return function(e){
1235             t.removeClass(overCls);
1236             if(tc.stopEvent !== false){
1237                 e.stopEvent();
1238             }
1239             if(tc.handler){
1240                 tc.handler.call(tc.scope || t, e, t, panel, tc);
1241             }
1242         };
1243     },
1244
1245     // private
1246     afterRender : function(){
1247         if(this.floating && !this.hidden){
1248             this.el.show();
1249         }
1250         if(this.title){
1251             this.setTitle(this.title);
1252         }
1253         Ext.Panel.superclass.afterRender.call(this); // do sizing calcs last
1254         if (this.collapsed) {
1255             this.collapsed = false;
1256             this.collapse(false);
1257         }
1258         this.initEvents();
1259     },
1260
1261     // private
1262     getKeyMap : function(){
1263         if(!this.keyMap){
1264             this.keyMap = new Ext.KeyMap(this.el, this.keys);
1265         }
1266         return this.keyMap;
1267     },
1268
1269     // private
1270     initEvents : function(){
1271         if(this.keys){
1272             this.getKeyMap();
1273         }
1274         if(this.draggable){
1275             this.initDraggable();
1276         }
1277         if(this.toolbars.length > 0){
1278             Ext.each(this.toolbars, function(tb){
1279                 tb.doLayout();
1280                 tb.on({
1281                     scope: this,
1282                     afterlayout: this.syncHeight,
1283                     remove: this.syncHeight
1284                 });
1285             }, this);
1286             this.syncHeight();
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 (this.deferLayout) {
1414             delete this.deferLayout;
1415             this.doLayout(true);
1416         }
1417         this.fireEvent('expand', this);
1418     },
1419
1420     <div id="method-Ext.Panel-toggleCollapse"></div>/**
1421      * Shortcut for performing an {@link #expand} or {@link #collapse} based on the current state of the panel.
1422      * @param {Boolean} animate True to animate the transition, else false (defaults to the value of the
1423      * {@link #animCollapse} panel config)
1424      * @return {Ext.Panel} this
1425      */
1426     toggleCollapse : function(animate){
1427         this[this.collapsed ? 'expand' : 'collapse'](animate);
1428         return this;
1429     },
1430
1431     // private
1432     onDisable : function(){
1433         if(this.rendered && this.maskDisabled){
1434             this.el.mask();
1435         }
1436         Ext.Panel.superclass.onDisable.call(this);
1437     },
1438
1439     // private
1440     onEnable : function(){
1441         if(this.rendered && this.maskDisabled){
1442             this.el.unmask();
1443         }
1444         Ext.Panel.superclass.onEnable.call(this);
1445     },
1446
1447     // private
1448     onResize : function(w, h){
1449         if(Ext.isDefined(w) || Ext.isDefined(h)){
1450             if(!this.collapsed){
1451                 // First, set the the Panel's body width.
1452                 // If we have auto-widthed it, get the resulting full offset width so we can size the Toolbars to match
1453                 // The Toolbars must not buffer this resize operation because we need to know their heights.
1454
1455                 if(Ext.isNumber(w)){
1456                     this.body.setWidth(w = this.adjustBodyWidth(w - this.getFrameWidth()));
1457                 } else if (w == 'auto') {
1458                     w = this.body.setWidth('auto').dom.offsetWidth;
1459                 } else {
1460                     w = this.body.dom.offsetWidth;
1461                 }
1462
1463                 if(this.tbar){
1464                     this.tbar.setWidth(w);
1465                     if(this.topToolbar){
1466                         this.topToolbar.setSize(w);
1467                     }
1468                 }
1469                 if(this.bbar){
1470                     this.bbar.setWidth(w);
1471                     if(this.bottomToolbar){
1472                         this.bottomToolbar.setSize(w);
1473                         // The bbar does not move on resize without this.
1474                         if (Ext.isIE) {
1475                             this.bbar.setStyle('position', 'static');
1476                             this.bbar.setStyle('position', '');
1477                         }
1478                     }
1479                 }
1480                 if(this.footer){
1481                     this.footer.setWidth(w);
1482                     if(this.fbar){
1483                         this.fbar.setSize(Ext.isIE ? (w - this.footer.getFrameWidth('lr')) : 'auto');
1484                     }
1485                 }
1486
1487                 // At this point, the Toolbars must be layed out for getFrameHeight to find a result.
1488                 if(Ext.isNumber(h)){
1489                     h = Math.max(0, this.adjustBodyHeight(h - this.getFrameHeight()));
1490                     this.body.setHeight(h);
1491                 }else if(h == 'auto'){
1492                     this.body.setHeight(h);
1493                 }
1494
1495                 if(this.disabled && this.el._mask){
1496                     this.el._mask.setSize(this.el.dom.clientWidth, this.el.getHeight());
1497                 }
1498             }else{
1499                 // Adds an event to set the correct height afterExpand.  This accounts for the deferHeight flag in panel
1500                 this.queuedBodySize = {width: w, height: h};
1501                 if(!this.queuedExpand && this.allowQueuedExpand !== false){
1502                     this.queuedExpand = true;
1503                     this.on('expand', function(){
1504                         delete this.queuedExpand;
1505                         this.onResize(this.queuedBodySize.width, this.queuedBodySize.height);
1506                     }, this, {single:true});
1507                 }
1508             }
1509             this.onBodyResize(w, h);
1510         }
1511         this.syncShadow();
1512         Ext.Panel.superclass.onResize.call(this);
1513     },
1514
1515     // private
1516     onBodyResize: function(w, h){
1517         this.fireEvent('bodyresize', this, w, h);
1518     },
1519
1520     // private
1521     getToolbarHeight: function(){
1522         var h = 0;
1523         if(this.rendered){
1524             Ext.each(this.toolbars, function(tb){
1525                 h += tb.getHeight();
1526             }, this);
1527         }
1528         return h;
1529     },
1530
1531     // private
1532     adjustBodyHeight : function(h){
1533         return h;
1534     },
1535
1536     // private
1537     adjustBodyWidth : function(w){
1538         return w;
1539     },
1540
1541     // private
1542     onPosition : function(){
1543         this.syncShadow();
1544     },
1545
1546     <div id="method-Ext.Panel-getFrameWidth"></div>/**
1547      * Returns the width in pixels of the framing elements of this panel (not including the body width).  To
1548      * retrieve the body width see {@link #getInnerWidth}.
1549      * @return {Number} The frame width
1550      */
1551     getFrameWidth : function(){
1552         var w = this.el.getFrameWidth('lr') + this.bwrap.getFrameWidth('lr');
1553
1554         if(this.frame){
1555             var l = this.bwrap.dom.firstChild;
1556             w += (Ext.fly(l).getFrameWidth('l') + Ext.fly(l.firstChild).getFrameWidth('r'));
1557             w += this.mc.getFrameWidth('lr');
1558         }
1559         return w;
1560     },
1561
1562     <div id="method-Ext.Panel-getFrameHeight"></div>/**
1563      * Returns the height in pixels of the framing elements of this panel (including any top and bottom bars and
1564      * header and footer elements, but not including the body height).  To retrieve the body height see {@link #getInnerHeight}.
1565      * @return {Number} The frame height
1566      */
1567     getFrameHeight : function(){
1568         var h  = this.el.getFrameWidth('tb') + this.bwrap.getFrameWidth('tb');
1569         h += (this.tbar ? this.tbar.getHeight() : 0) +
1570              (this.bbar ? this.bbar.getHeight() : 0);
1571
1572         if(this.frame){
1573             h += this.el.dom.firstChild.offsetHeight + this.ft.dom.offsetHeight + this.mc.getFrameWidth('tb');
1574         }else{
1575             h += (this.header ? this.header.getHeight() : 0) +
1576                 (this.footer ? this.footer.getHeight() : 0);
1577         }
1578         return h;
1579     },
1580
1581     <div id="method-Ext.Panel-getInnerWidth"></div>/**
1582      * Returns the width in pixels of the body element (not including the width of any framing elements).
1583      * For the frame width see {@link #getFrameWidth}.
1584      * @return {Number} The body width
1585      */
1586     getInnerWidth : function(){
1587         return this.getSize().width - this.getFrameWidth();
1588     },
1589
1590     <div id="method-Ext.Panel-getInnerHeight"></div>/**
1591      * Returns the height in pixels of the body element (not including the height of any framing elements).
1592      * For the frame height see {@link #getFrameHeight}.
1593      * @return {Number} The body height
1594      */
1595     getInnerHeight : function(){
1596         return this.getSize().height - this.getFrameHeight();
1597     },
1598
1599     // private
1600     syncShadow : function(){
1601         if(this.floating){
1602             this.el.sync(true);
1603         }
1604     },
1605
1606     // private
1607     getLayoutTarget : function(){
1608         return this.body;
1609     },
1610
1611     // private
1612     getContentTarget : function(){
1613         return this.body;
1614     },
1615
1616     <div id="method-Ext.Panel-setTitle"></div>/**
1617      * <p>Sets the title text for the panel and optionally the {@link #iconCls icon class}.</p>
1618      * <p>In order to be able to set the title, a header element must have been created
1619      * for the Panel. This is triggered either by configuring the Panel with a non-blank <code>{@link #title}</code>,
1620      * or configuring it with <code><b>{@link #header}: true</b></code>.</p>
1621      * @param {String} title The title text to set
1622      * @param {String} iconCls (optional) {@link #iconCls iconCls} A user-defined CSS class that provides the icon image for this panel
1623      */
1624     setTitle : function(title, iconCls){
1625         this.title = title;
1626         if(this.header && this.headerAsText){
1627             this.header.child('span').update(title);
1628         }
1629         if(iconCls){
1630             this.setIconClass(iconCls);
1631         }
1632         this.fireEvent('titlechange', this, title);
1633         return this;
1634     },
1635
1636     <div id="method-Ext.Panel-getUpdater"></div>/**
1637      * Get the {@link Ext.Updater} for this panel. Enables you to perform Ajax updates of this panel's body.
1638      * @return {Ext.Updater} The Updater
1639      */
1640     getUpdater : function(){
1641         return this.body.getUpdater();
1642     },
1643
1644      <div id="method-Ext.Panel-load"></div>/**
1645      * Loads this content panel immediately with content returned from an XHR call.
1646      * @param {Object/String/Function} config A config object containing any of the following options:
1647 <pre><code>
1648 panel.load({
1649     url: 'your-url.php',
1650     params: {param1: 'foo', param2: 'bar'}, // or a URL encoded string
1651     callback: yourFunction,
1652     scope: yourObject, // optional scope for the callback
1653     discardUrl: false,
1654     nocache: false,
1655     text: 'Loading...',
1656     timeout: 30,
1657     scripts: false
1658 });
1659 </code></pre>
1660      * The only required property is url. The optional properties nocache, text and scripts
1661      * are shorthand for disableCaching, indicatorText and loadScripts and are used to set their
1662      * associated property on this panel Updater instance.
1663      * @return {Ext.Panel} this
1664      */
1665     load : function(){
1666         var um = this.body.getUpdater();
1667         um.update.apply(um, arguments);
1668         return this;
1669     },
1670
1671     // private
1672     beforeDestroy : function(){
1673         Ext.Panel.superclass.beforeDestroy.call(this);
1674         if(this.header){
1675             this.header.removeAllListeners();
1676         }
1677         if(this.tools){
1678             for(var k in this.tools){
1679                 Ext.destroy(this.tools[k]);
1680             }
1681         }
1682         if(this.toolbars.length > 0){
1683             Ext.each(this.toolbars, function(tb){
1684                 tb.un('afterlayout', this.syncHeight, this);
1685                 tb.un('remove', this.syncHeight, this);
1686             }, this);
1687         }
1688         if(Ext.isArray(this.buttons)){
1689             while(this.buttons.length) {
1690                 Ext.destroy(this.buttons[0]);
1691             }
1692         }
1693         if(this.rendered){
1694             Ext.destroy(
1695                 this.ft,
1696                 this.header,
1697                 this.footer,
1698                 this.toolbars,
1699                 this.tbar,
1700                 this.bbar,
1701                 this.body,
1702                 this.mc,
1703                 this.bwrap
1704             );
1705             if (this.fbar) {
1706                 Ext.destroy(
1707                     this.fbar,
1708                     this.fbar.el
1709                 );
1710             }
1711         }else{
1712             Ext.destroy(
1713                 this.topToolbar,
1714                 this.bottomToolbar
1715             );
1716         }
1717     },
1718
1719     // private
1720     createClasses : function(){
1721         this.headerCls = this.baseCls + '-header';
1722         this.headerTextCls = this.baseCls + '-header-text';
1723         this.bwrapCls = this.baseCls + '-bwrap';
1724         this.tbarCls = this.baseCls + '-tbar';
1725         this.bodyCls = this.baseCls + '-body';
1726         this.bbarCls = this.baseCls + '-bbar';
1727         this.footerCls = this.baseCls + '-footer';
1728     },
1729
1730     // private
1731     createGhost : function(cls, useShim, appendTo){
1732         var el = document.createElement('div');
1733         el.className = 'x-panel-ghost ' + (cls ? cls : '');
1734         if(this.header){
1735             el.appendChild(this.el.dom.firstChild.cloneNode(true));
1736         }
1737         Ext.fly(el.appendChild(document.createElement('ul'))).setHeight(this.bwrap.getHeight());
1738         el.style.width = this.el.dom.offsetWidth + 'px';;
1739         if(!appendTo){
1740             this.container.dom.appendChild(el);
1741         }else{
1742             Ext.getDom(appendTo).appendChild(el);
1743         }
1744         if(useShim !== false && this.el.useShim !== false){
1745             var layer = new Ext.Layer({shadow:false, useDisplay:true, constrain:false}, el);
1746             layer.show();
1747             return layer;
1748         }else{
1749             return new Ext.Element(el);
1750         }
1751     },
1752
1753     // private
1754     doAutoLoad : function(){
1755         var u = this.body.getUpdater();
1756         if(this.renderer){
1757             u.setRenderer(this.renderer);
1758         }
1759         u.update(Ext.isObject(this.autoLoad) ? this.autoLoad : {url: this.autoLoad});
1760     },
1761
1762     <div id="method-Ext.Panel-getTool"></div>/**
1763      * Retrieve a tool by id.
1764      * @param {String} id
1765      * @return {Object} tool
1766      */
1767     getTool : function(id) {
1768         return this.tools[id];
1769     }
1770
1771 <div id="cfg-Ext.Panel-autoEl"></div>/**
1772  * @cfg {String} autoEl @hide
1773  */
1774 });
1775 Ext.reg('panel', Ext.Panel);
1776 </pre>    \r
1777 </body>\r
1778 </html>