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