Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[extjs.git] / src / widgets / Component.js
1 /*!
2  * Ext JS Library 3.1.1
3  * Copyright(c) 2006-2010 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**
8  * @class Ext.Component
9  * @extends Ext.util.Observable
10  * <p>Base class for all Ext components.  All subclasses of Component may participate in the automated
11  * Ext component lifecycle of creation, rendering and destruction which is provided by the {@link Ext.Container Container} class.
12  * Components may be added to a Container through the {@link Ext.Container#items items} config option at the time the Container is created,
13  * or they may be added dynamically via the {@link Ext.Container#add add} method.</p>
14  * <p>The Component base class has built-in support for basic hide/show and enable/disable behavior.</p>
15  * <p>All Components are registered with the {@link Ext.ComponentMgr} on construction so that they can be referenced at any time via
16  * {@link Ext#getCmp}, passing the {@link #id}.</p>
17  * <p>All user-developed visual widgets that are required to participate in automated lifecycle and size management should subclass Component (or
18  * {@link Ext.BoxComponent} if managed box model handling is required, ie height and width management).</p>
19  * <p>See the <a href="http://extjs.com/learn/Tutorial:Creating_new_UI_controls">Creating new UI controls</a> tutorial for details on how
20  * and to either extend or augment ExtJs base classes to create custom Components.</p>
21  * <p>Every component has a specific xtype, which is its Ext-specific type name, along with methods for checking the
22  * xtype like {@link #getXType} and {@link #isXType}. This is the list of all valid xtypes:</p>
23  * <pre>
24 xtype            Class
25 -------------    ------------------
26 box              {@link Ext.BoxComponent}
27 button           {@link Ext.Button}
28 buttongroup      {@link Ext.ButtonGroup}
29 colorpalette     {@link Ext.ColorPalette}
30 component        {@link Ext.Component}
31 container        {@link Ext.Container}
32 cycle            {@link Ext.CycleButton}
33 dataview         {@link Ext.DataView}
34 datepicker       {@link Ext.DatePicker}
35 editor           {@link Ext.Editor}
36 editorgrid       {@link Ext.grid.EditorGridPanel}
37 flash            {@link Ext.FlashComponent}
38 grid             {@link Ext.grid.GridPanel}
39 listview         {@link Ext.ListView}
40 panel            {@link Ext.Panel}
41 progress         {@link Ext.ProgressBar}
42 propertygrid     {@link Ext.grid.PropertyGrid}
43 slider           {@link Ext.Slider}
44 spacer           {@link Ext.Spacer}
45 splitbutton      {@link Ext.SplitButton}
46 tabpanel         {@link Ext.TabPanel}
47 treepanel        {@link Ext.tree.TreePanel}
48 viewport         {@link Ext.ViewPort}
49 window           {@link Ext.Window}
50
51 Toolbar components
52 ---------------------------------------
53 paging           {@link Ext.PagingToolbar}
54 toolbar          {@link Ext.Toolbar}
55 tbbutton         {@link Ext.Toolbar.Button}        (deprecated; use button)
56 tbfill           {@link Ext.Toolbar.Fill}
57 tbitem           {@link Ext.Toolbar.Item}
58 tbseparator      {@link Ext.Toolbar.Separator}
59 tbspacer         {@link Ext.Toolbar.Spacer}
60 tbsplit          {@link Ext.Toolbar.SplitButton}   (deprecated; use splitbutton)
61 tbtext           {@link Ext.Toolbar.TextItem}
62
63 Menu components
64 ---------------------------------------
65 menu             {@link Ext.menu.Menu}
66 colormenu        {@link Ext.menu.ColorMenu}
67 datemenu         {@link Ext.menu.DateMenu}
68 menubaseitem     {@link Ext.menu.BaseItem}
69 menucheckitem    {@link Ext.menu.CheckItem}
70 menuitem         {@link Ext.menu.Item}
71 menuseparator    {@link Ext.menu.Separator}
72 menutextitem     {@link Ext.menu.TextItem}
73
74 Form components
75 ---------------------------------------
76 form             {@link Ext.form.FormPanel}
77 checkbox         {@link Ext.form.Checkbox}
78 checkboxgroup    {@link Ext.form.CheckboxGroup}
79 combo            {@link Ext.form.ComboBox}
80 datefield        {@link Ext.form.DateField}
81 displayfield     {@link Ext.form.DisplayField}
82 field            {@link Ext.form.Field}
83 fieldset         {@link Ext.form.FieldSet}
84 hidden           {@link Ext.form.Hidden}
85 htmleditor       {@link Ext.form.HtmlEditor}
86 label            {@link Ext.form.Label}
87 numberfield      {@link Ext.form.NumberField}
88 radio            {@link Ext.form.Radio}
89 radiogroup       {@link Ext.form.RadioGroup}
90 textarea         {@link Ext.form.TextArea}
91 textfield        {@link Ext.form.TextField}
92 timefield        {@link Ext.form.TimeField}
93 trigger          {@link Ext.form.TriggerField}
94
95 Chart components
96 ---------------------------------------
97 chart            {@link Ext.chart.Chart}
98 barchart         {@link Ext.chart.BarChart}
99 cartesianchart   {@link Ext.chart.CartesianChart}
100 columnchart      {@link Ext.chart.ColumnChart}
101 linechart        {@link Ext.chart.LineChart}
102 piechart         {@link Ext.chart.PieChart}
103
104 Store xtypes
105 ---------------------------------------
106 arraystore       {@link Ext.data.ArrayStore}
107 directstore      {@link Ext.data.DirectStore}
108 groupingstore    {@link Ext.data.GroupingStore}
109 jsonstore        {@link Ext.data.JsonStore}
110 simplestore      {@link Ext.data.SimpleStore}      (deprecated; use arraystore)
111 store            {@link Ext.data.Store}
112 xmlstore         {@link Ext.data.XmlStore}
113 </pre>
114  * @constructor
115  * @param {Ext.Element/String/Object} config The configuration options may be specified as either:
116  * <div class="mdetail-params"><ul>
117  * <li><b>an element</b> :
118  * <p class="sub-desc">it is set as the internal element and its id used as the component id</p></li>
119  * <li><b>a string</b> :
120  * <p class="sub-desc">it is assumed to be the id of an existing element and is used as the component id</p></li>
121  * <li><b>anything else</b> :
122  * <p class="sub-desc">it is assumed to be a standard config object and is applied to the component</p></li>
123  * </ul></div>
124  */
125 Ext.Component = function(config){
126     config = config || {};
127     if(config.initialConfig){
128         if(config.isAction){           // actions
129             this.baseAction = config;
130         }
131         config = config.initialConfig; // component cloning / action set up
132     }else if(config.tagName || config.dom || Ext.isString(config)){ // element object
133         config = {applyTo: config, id: config.id || config};
134     }
135
136     /**
137      * This Component's initial configuration specification. Read-only.
138      * @type Object
139      * @property initialConfig
140      */
141     this.initialConfig = config;
142
143     Ext.apply(this, config);
144     this.addEvents(
145         /**
146          * @event added
147          * Fires when a component is added to an Ext.Container
148          * @param {Ext.Component} this
149          * @param {Ext.Container} ownerCt Container which holds the component
150          * @param {number} index Position at which the component was added
151          */
152         'added',
153         /**
154          * @event disable
155          * Fires after the component is disabled.
156          * @param {Ext.Component} this
157          */
158         'disable',
159         /**
160          * @event enable
161          * Fires after the component is enabled.
162          * @param {Ext.Component} this
163          */
164         'enable',
165         /**
166          * @event beforeshow
167          * Fires before the component is shown by calling the {@link #show} method.
168          * Return false from an event handler to stop the show.
169          * @param {Ext.Component} this
170          */
171         'beforeshow',
172         /**
173          * @event show
174          * Fires after the component is shown when calling the {@link #show} method.
175          * @param {Ext.Component} this
176          */
177         'show',
178         /**
179          * @event beforehide
180          * Fires before the component is hidden by calling the {@link #hide} method.
181          * Return false from an event handler to stop the hide.
182          * @param {Ext.Component} this
183          */
184         'beforehide',
185         /**
186          * @event hide
187          * Fires after the component is hidden.
188          * Fires after the component is hidden when calling the {@link #hide} method.
189          * @param {Ext.Component} this
190          */
191         'hide',
192         /**
193          * @event removed
194          * Fires when a component is removed from an Ext.Container
195          * @param {Ext.Component} this
196          * @param {Ext.Container} ownerCt Container which holds the component
197          */
198         'removed',
199         /**
200          * @event beforerender
201          * Fires before the component is {@link #rendered}. Return false from an
202          * event handler to stop the {@link #render}.
203          * @param {Ext.Component} this
204          */
205         'beforerender',
206         /**
207          * @event render
208          * Fires after the component markup is {@link #rendered}.
209          * @param {Ext.Component} this
210          */
211         'render',
212         /**
213          * @event afterrender
214          * <p>Fires after the component rendering is finished.</p>
215          * <p>The afterrender event is fired after this Component has been {@link #rendered}, been postprocesed
216          * by any afterRender method defined for the Component, and, if {@link #stateful}, after state
217          * has been restored.</p>
218          * @param {Ext.Component} this
219          */
220         'afterrender',
221         /**
222          * @event beforedestroy
223          * Fires before the component is {@link #destroy}ed. Return false from an event handler to stop the {@link #destroy}.
224          * @param {Ext.Component} this
225          */
226         'beforedestroy',
227         /**
228          * @event destroy
229          * Fires after the component is {@link #destroy}ed.
230          * @param {Ext.Component} this
231          */
232         'destroy',
233         /**
234          * @event beforestaterestore
235          * Fires before the state of the component is restored. Return false from an event handler to stop the restore.
236          * @param {Ext.Component} this
237          * @param {Object} state The hash of state values returned from the StateProvider. If this
238          * event is not vetoed, then the state object is passed to <b><tt>applyState</tt></b>. By default,
239          * that simply copies property values into this Component. The method maybe overriden to
240          * provide custom state restoration.
241          */
242         'beforestaterestore',
243         /**
244          * @event staterestore
245          * Fires after the state of the component is restored.
246          * @param {Ext.Component} this
247          * @param {Object} state The hash of state values returned from the StateProvider. This is passed
248          * to <b><tt>applyState</tt></b>. By default, that simply copies property values into this
249          * Component. The method maybe overriden to provide custom state restoration.
250          */
251         'staterestore',
252         /**
253          * @event beforestatesave
254          * Fires before the state of the component is saved to the configured state provider. Return false to stop the save.
255          * @param {Ext.Component} this
256          * @param {Object} state The hash of state values. This is determined by calling
257          * <b><tt>getState()</tt></b> on the Component. This method must be provided by the
258          * developer to return whetever representation of state is required, by default, Ext.Component
259          * has a null implementation.
260          */
261         'beforestatesave',
262         /**
263          * @event statesave
264          * Fires after the state of the component is saved to the configured state provider.
265          * @param {Ext.Component} this
266          * @param {Object} state The hash of state values. This is determined by calling
267          * <b><tt>getState()</tt></b> on the Component. This method must be provided by the
268          * developer to return whetever representation of state is required, by default, Ext.Component
269          * has a null implementation.
270          */
271         'statesave'
272     );
273     this.getId();
274     Ext.ComponentMgr.register(this);
275     Ext.Component.superclass.constructor.call(this);
276
277     if(this.baseAction){
278         this.baseAction.addComponent(this);
279     }
280
281     this.initComponent();
282
283     if(this.plugins){
284         if(Ext.isArray(this.plugins)){
285             for(var i = 0, len = this.plugins.length; i < len; i++){
286                 this.plugins[i] = this.initPlugin(this.plugins[i]);
287             }
288         }else{
289             this.plugins = this.initPlugin(this.plugins);
290         }
291     }
292
293     if(this.stateful !== false){
294         this.initState();
295     }
296
297     if(this.applyTo){
298         this.applyToMarkup(this.applyTo);
299         delete this.applyTo;
300     }else if(this.renderTo){
301         this.render(this.renderTo);
302         delete this.renderTo;
303     }
304 };
305
306 // private
307 Ext.Component.AUTO_ID = 1000;
308
309 Ext.extend(Ext.Component, Ext.util.Observable, {
310     // Configs below are used for all Components when rendered by FormLayout.
311     /**
312      * @cfg {String} fieldLabel <p>The label text to display next to this Component (defaults to '').</p>
313      * <br><p><b>Note</b>: this config is only used when this Component is rendered by a Container which
314      * has been configured to use the <b>{@link Ext.layout.FormLayout FormLayout}</b> layout manager (e.g.
315      * {@link Ext.form.FormPanel} or specifying <tt>layout:'form'</tt>).</p><br>
316      * <p>Also see <tt>{@link #hideLabel}</tt> and
317      * {@link Ext.layout.FormLayout}.{@link Ext.layout.FormLayout#fieldTpl fieldTpl}.</p>
318      * Example use:<pre><code>
319 new Ext.FormPanel({
320     height: 100,
321     renderTo: Ext.getBody(),
322     items: [{
323         xtype: 'textfield',
324         fieldLabel: 'Name'
325     }]
326 });
327 </code></pre>
328      */
329     /**
330      * @cfg {String} labelStyle <p>A CSS style specification string to apply directly to this field's
331      * label.  Defaults to the container's labelStyle value if set (e.g.,
332      * <tt>{@link Ext.layout.FormLayout#labelStyle}</tt> , or '').</p>
333      * <br><p><b>Note</b>: see the note for <code>{@link #clearCls}</code>.</p><br>
334      * <p>Also see <code>{@link #hideLabel}</code> and
335      * <code>{@link Ext.layout.FormLayout}.{@link Ext.layout.FormLayout#fieldTpl fieldTpl}.</code></p>
336      * Example use:<pre><code>
337 new Ext.FormPanel({
338     height: 100,
339     renderTo: Ext.getBody(),
340     items: [{
341         xtype: 'textfield',
342         fieldLabel: 'Name',
343         labelStyle: 'font-weight:bold;'
344     }]
345 });
346 </code></pre>
347      */
348     /**
349      * @cfg {String} labelSeparator <p>The separator to display after the text of each
350      * <tt>{@link #fieldLabel}</tt>.  This property may be configured at various levels.
351      * The order of precedence is:
352      * <div class="mdetail-params"><ul>
353      * <li>field / component level</li>
354      * <li>container level</li>
355      * <li>{@link Ext.layout.FormLayout#labelSeparator layout level} (defaults to colon <tt>':'</tt>)</li>
356      * </ul></div>
357      * To display no separator for this field's label specify empty string ''.</p>
358      * <br><p><b>Note</b>: see the note for <tt>{@link #clearCls}</tt>.</p><br>
359      * <p>Also see <tt>{@link #hideLabel}</tt> and
360      * {@link Ext.layout.FormLayout}.{@link Ext.layout.FormLayout#fieldTpl fieldTpl}.</p>
361      * Example use:<pre><code>
362 new Ext.FormPanel({
363     height: 100,
364     renderTo: Ext.getBody(),
365     layoutConfig: {
366         labelSeparator: '~'   // layout config has lowest priority (defaults to ':')
367     },
368     {@link Ext.layout.FormLayout#labelSeparator labelSeparator}: '>>',     // config at container level
369     items: [{
370         xtype: 'textfield',
371         fieldLabel: 'Field 1',
372         labelSeparator: '...' // field/component level config supersedes others
373     },{
374         xtype: 'textfield',
375         fieldLabel: 'Field 2' // labelSeparator will be '='
376     }]
377 });
378 </code></pre>
379      */
380     /**
381      * @cfg {Boolean} hideLabel <p><tt>true</tt> to completely hide the label element
382      * ({@link #fieldLabel label} and {@link #labelSeparator separator}). Defaults to <tt>false</tt>.
383      * By default, even if you do not specify a <tt>{@link #fieldLabel}</tt> the space will still be
384      * reserved so that the field will line up with other fields that do have labels.
385      * Setting this to <tt>true</tt> will cause the field to not reserve that space.</p>
386      * <br><p><b>Note</b>: see the note for <tt>{@link #clearCls}</tt>.</p><br>
387      * Example use:<pre><code>
388 new Ext.FormPanel({
389     height: 100,
390     renderTo: Ext.getBody(),
391     items: [{
392         xtype: 'textfield'
393         hideLabel: true
394     }]
395 });
396 </code></pre>
397      */
398     /**
399      * @cfg {String} clearCls <p>The CSS class used to to apply to the special clearing div rendered
400      * directly after each form field wrapper to provide field clearing (defaults to
401      * <tt>'x-form-clear-left'</tt>).</p>
402      * <br><p><b>Note</b>: this config is only used when this Component is rendered by a Container
403      * which has been configured to use the <b>{@link Ext.layout.FormLayout FormLayout}</b> layout
404      * manager (e.g. {@link Ext.form.FormPanel} or specifying <tt>layout:'form'</tt>) and either a
405      * <tt>{@link #fieldLabel}</tt> is specified or <tt>isFormField=true</tt> is specified.</p><br>
406      * <p>See {@link Ext.layout.FormLayout}.{@link Ext.layout.FormLayout#fieldTpl fieldTpl} also.</p>
407      */
408     /**
409      * @cfg {String} itemCls
410      * <p><b>Note</b>: this config is only used when this Component is rendered by a Container which
411      * has been configured to use the <b>{@link Ext.layout.FormLayout FormLayout}</b> layout manager (e.g.
412      * {@link Ext.form.FormPanel} or specifying <tt>layout:'form'</tt>).</p><br>
413      * <p>An additional CSS class to apply to the div wrapping the form item
414      * element of this field.  If supplied, <tt>itemCls</tt> at the <b>field</b> level will override
415      * the default <tt>itemCls</tt> supplied at the <b>container</b> level. The value specified for
416      * <tt>itemCls</tt> will be added to the default class (<tt>'x-form-item'</tt>).</p>
417      * <p>Since it is applied to the item wrapper (see
418      * {@link Ext.layout.FormLayout}.{@link Ext.layout.FormLayout#fieldTpl fieldTpl}), it allows
419      * you to write standard CSS rules that can apply to the field, the label (if specified), or
420      * any other element within the markup for the field.</p>
421      * <br><p><b>Note</b>: see the note for <tt>{@link #fieldLabel}</tt>.</p><br>
422      * Example use:<pre><code>
423 // Apply a style to the field&#39;s label:
424 &lt;style>
425     .required .x-form-item-label {font-weight:bold;color:red;}
426 &lt;/style>
427
428 new Ext.FormPanel({
429     height: 100,
430     renderTo: Ext.getBody(),
431     items: [{
432         xtype: 'textfield',
433         fieldLabel: 'Name',
434         itemCls: 'required' //this label will be styled
435     },{
436         xtype: 'textfield',
437         fieldLabel: 'Favorite Color'
438     }]
439 });
440 </code></pre>
441      */
442
443     /**
444      * @cfg {String} id
445      * <p>The <b>unique</b> id of this component (defaults to an {@link #getId auto-assigned id}).
446      * You should assign an id if you need to be able to access the component later and you do
447      * not have an object reference available (e.g., using {@link Ext}.{@link Ext#getCmp getCmp}).</p>
448      * <p>Note that this id will also be used as the element id for the containing HTML element
449      * that is rendered to the page for this component. This allows you to write id-based CSS
450      * rules to style the specific instance of this component uniquely, and also to select
451      * sub-elements using this component's id as the parent.</p>
452      * <p><b>Note</b>: to avoid complications imposed by a unique <tt>id</tt> also see
453      * <code>{@link #itemId}</code> and <code>{@link #ref}</code>.</p>
454      * <p><b>Note</b>: to access the container of an item see <code>{@link #ownerCt}</code>.</p>
455      */
456     /**
457      * @cfg {String} itemId
458      * <p>An <tt>itemId</tt> can be used as an alternative way to get a reference to a component
459      * when no object reference is available.  Instead of using an <code>{@link #id}</code> with
460      * {@link Ext}.{@link Ext#getCmp getCmp}, use <code>itemId</code> with
461      * {@link Ext.Container}.{@link Ext.Container#getComponent getComponent} which will retrieve
462      * <code>itemId</code>'s or <tt>{@link #id}</tt>'s. Since <code>itemId</code>'s are an index to the
463      * container's internal MixedCollection, the <code>itemId</code> is scoped locally to the container --
464      * avoiding potential conflicts with {@link Ext.ComponentMgr} which requires a <b>unique</b>
465      * <code>{@link #id}</code>.</p>
466      * <pre><code>
467 var c = new Ext.Panel({ //
468     {@link Ext.BoxComponent#height height}: 300,
469     {@link #renderTo}: document.body,
470     {@link Ext.Container#layout layout}: 'auto',
471     {@link Ext.Container#items items}: [
472         {
473             itemId: 'p1',
474             {@link Ext.Panel#title title}: 'Panel 1',
475             {@link Ext.BoxComponent#height height}: 150
476         },
477         {
478             itemId: 'p2',
479             {@link Ext.Panel#title title}: 'Panel 2',
480             {@link Ext.BoxComponent#height height}: 150
481         }
482     ]
483 })
484 p1 = c.{@link Ext.Container#getComponent getComponent}('p1'); // not the same as {@link Ext#getCmp Ext.getCmp()}
485 p2 = p1.{@link #ownerCt}.{@link Ext.Container#getComponent getComponent}('p2'); // reference via a sibling
486      * </code></pre>
487      * <p>Also see <tt>{@link #id}</tt> and <code>{@link #ref}</code>.</p>
488      * <p><b>Note</b>: to access the container of an item see <tt>{@link #ownerCt}</tt>.</p>
489      */
490     /**
491      * @cfg {String} xtype
492      * The registered <tt>xtype</tt> to create. This config option is not used when passing
493      * a config object into a constructor. This config option is used only when
494      * lazy instantiation is being used, and a child item of a Container is being
495      * specified not as a fully instantiated Component, but as a <i>Component config
496      * object</i>. The <tt>xtype</tt> will be looked up at render time up to determine what
497      * type of child Component to create.<br><br>
498      * The predefined xtypes are listed {@link Ext.Component here}.
499      * <br><br>
500      * If you subclass Components to create your own Components, you may register
501      * them using {@link Ext.ComponentMgr#registerType} in order to be able to
502      * take advantage of lazy instantiation and rendering.
503      */
504     /**
505      * @cfg {String} ptype
506      * The registered <tt>ptype</tt> to create. This config option is not used when passing
507      * a config object into a constructor. This config option is used only when
508      * lazy instantiation is being used, and a Plugin is being
509      * specified not as a fully instantiated Component, but as a <i>Component config
510      * object</i>. The <tt>ptype</tt> will be looked up at render time up to determine what
511      * type of Plugin to create.<br><br>
512      * If you create your own Plugins, you may register them using
513      * {@link Ext.ComponentMgr#registerPlugin} in order to be able to
514      * take advantage of lazy instantiation and rendering.
515      */
516     /**
517      * @cfg {String} cls
518      * An optional extra CSS class that will be added to this component's Element (defaults to '').  This can be
519      * useful for adding customized styles to the component or any of its children using standard CSS rules.
520      */
521     /**
522      * @cfg {String} overCls
523      * An optional extra CSS class that will be added to this component's Element when the mouse moves
524      * over the Element, and removed when the mouse moves out. (defaults to '').  This can be
525      * useful for adding customized 'active' or 'hover' styles to the component or any of its children using standard CSS rules.
526      */
527     /**
528      * @cfg {String} style
529      * A custom style specification to be applied to this component's Element.  Should be a valid argument to
530      * {@link Ext.Element#applyStyles}.
531      * <pre><code>
532 new Ext.Panel({
533     title: 'Some Title',
534     renderTo: Ext.getBody(),
535     width: 400, height: 300,
536     layout: 'form',
537     items: [{
538         xtype: 'textarea',
539         style: {
540             width: '95%',
541             marginBottom: '10px'
542         }
543     },
544         new Ext.Button({
545             text: 'Send',
546             minWidth: '100',
547             style: {
548                 marginBottom: '10px'
549             }
550         })
551     ]
552 });
553      * </code></pre>
554      */
555     /**
556      * @cfg {String} ctCls
557      * <p>An optional extra CSS class that will be added to this component's container. This can be useful for
558      * adding customized styles to the container or any of its children using standard CSS rules.  See
559      * {@link Ext.layout.ContainerLayout}.{@link Ext.layout.ContainerLayout#extraCls extraCls} also.</p>
560      * <p><b>Note</b>: <tt>ctCls</tt> defaults to <tt>''</tt> except for the following class
561      * which assigns a value by default:
562      * <div class="mdetail-params"><ul>
563      * <li>{@link Ext.layout.Box Box Layout} : <tt>'x-box-layout-ct'</tt></li>
564      * </ul></div>
565      * To configure the above Class with an extra CSS class append to the default.  For example,
566      * for BoxLayout (Hbox and Vbox):<pre><code>
567      * ctCls: 'x-box-layout-ct custom-class'
568      * </code></pre>
569      * </p>
570      */
571     /**
572      * @cfg {Boolean} disabled
573      * Render this component disabled (default is false).
574      */
575     disabled : false,
576     /**
577      * @cfg {Boolean} hidden
578      * Render this component hidden (default is false). If <tt>true</tt>, the
579      * {@link #hide} method will be called internally.
580      */
581     hidden : false,
582     /**
583      * @cfg {Object/Array} plugins
584      * An object or array of objects that will provide custom functionality for this component.  The only
585      * requirement for a valid plugin is that it contain an init method that accepts a reference of type Ext.Component.
586      * When a component is created, if any plugins are available, the component will call the init method on each
587      * plugin, passing a reference to itself.  Each plugin can then call methods or respond to events on the
588      * component as needed to provide its functionality.
589      */
590     /**
591      * @cfg {Mixed} applyTo
592      * <p>Specify the id of the element, a DOM element or an existing Element corresponding to a DIV
593      * that is already present in the document that specifies some structural markup for this
594      * component.</p><div><ul>
595      * <li><b>Description</b> : <ul>
596      * <div class="sub-desc">When <tt>applyTo</tt> is used, constituent parts of the component can also be specified
597      * by id or CSS class name within the main element, and the component being created may attempt
598      * to create its subcomponents from that markup if applicable.</div>
599      * </ul></li>
600      * <li><b>Notes</b> : <ul>
601      * <div class="sub-desc">When using this config, a call to render() is not required.</div>
602      * <div class="sub-desc">If applyTo is specified, any value passed for {@link #renderTo} will be ignored and the target
603      * element's parent node will automatically be used as the component's container.</div>
604      * </ul></li>
605      * </ul></div>
606      */
607     /**
608      * @cfg {Mixed} renderTo
609      * <p>Specify the id of the element, a DOM element or an existing Element that this component
610      * will be rendered into.</p><div><ul>
611      * <li><b>Notes</b> : <ul>
612      * <div class="sub-desc">Do <u>not</u> use this option if the Component is to be a child item of
613      * a {@link Ext.Container Container}. It is the responsibility of the
614      * {@link Ext.Container Container}'s {@link Ext.Container#layout layout manager}
615      * to render and manage its child items.</div>
616      * <div class="sub-desc">When using this config, a call to render() is not required.</div>
617      * </ul></li>
618      * </ul></div>
619      * <p>See <tt>{@link #render}</tt> also.</p>
620      */
621     /**
622      * @cfg {Boolean} stateful
623      * <p>A flag which causes the Component to attempt to restore the state of
624      * internal properties from a saved state on startup. The component must have
625      * either a <code>{@link #stateId}</code> or <code>{@link #id}</code> assigned
626      * for state to be managed. Auto-generated ids are not guaranteed to be stable
627      * across page loads and cannot be relied upon to save and restore the same
628      * state for a component.<p>
629      * <p>For state saving to work, the state manager's provider must have been
630      * set to an implementation of {@link Ext.state.Provider} which overrides the
631      * {@link Ext.state.Provider#set set} and {@link Ext.state.Provider#get get}
632      * methods to save and recall name/value pairs. A built-in implementation,
633      * {@link Ext.state.CookieProvider} is available.</p>
634      * <p>To set the state provider for the current page:</p>
635      * <pre><code>
636 Ext.state.Manager.setProvider(new Ext.state.CookieProvider({
637     expires: new Date(new Date().getTime()+(1000*60*60*24*7)), //7 days from now
638 }));
639      * </code></pre>
640      * <p>A stateful Component attempts to save state when one of the events
641      * listed in the <code>{@link #stateEvents}</code> configuration fires.</p>
642      * <p>To save state, a stateful Component first serializes its state by
643      * calling <b><code>getState</code></b>. By default, this function does
644      * nothing. The developer must provide an implementation which returns an
645      * object hash which represents the Component's restorable state.</p>
646      * <p>The value yielded by getState is passed to {@link Ext.state.Manager#set}
647      * which uses the configured {@link Ext.state.Provider} to save the object
648      * keyed by the Component's <code>{@link stateId}</code>, or, if that is not
649      * specified, its <code>{@link #id}</code>.</p>
650      * <p>During construction, a stateful Component attempts to <i>restore</i>
651      * its state by calling {@link Ext.state.Manager#get} passing the
652      * <code>{@link #stateId}</code>, or, if that is not specified, the
653      * <code>{@link #id}</code>.</p>
654      * <p>The resulting object is passed to <b><code>applyState</code></b>.
655      * The default implementation of <code>applyState</code> simply copies
656      * properties into the object, but a developer may override this to support
657      * more behaviour.</p>
658      * <p>You can perform extra processing on state save and restore by attaching
659      * handlers to the {@link #beforestaterestore}, {@link #staterestore},
660      * {@link #beforestatesave} and {@link #statesave} events.</p>
661      */
662     /**
663      * @cfg {String} stateId
664      * The unique id for this component to use for state management purposes
665      * (defaults to the component id if one was set, otherwise null if the
666      * component is using a generated id).
667      * <p>See <code>{@link #stateful}</code> for an explanation of saving and
668      * restoring Component state.</p>
669      */
670     /**
671      * @cfg {Array} stateEvents
672      * <p>An array of events that, when fired, should trigger this component to
673      * save its state (defaults to none). <code>stateEvents</code> may be any type
674      * of event supported by this component, including browser or custom events
675      * (e.g., <tt>['click', 'customerchange']</tt>).</p>
676      * <p>See <code>{@link #stateful}</code> for an explanation of saving and
677      * restoring Component state.</p>
678      */
679     /**
680      * @cfg {Mixed} autoEl
681      * <p>A tag name or {@link Ext.DomHelper DomHelper} spec used to create the {@link #getEl Element} which will
682      * encapsulate this Component.</p>
683      * <p>You do not normally need to specify this. For the base classes {@link Ext.Component}, {@link Ext.BoxComponent},
684      * and {@link Ext.Container}, this defaults to <b><tt>'div'</tt></b>. The more complex Ext classes use a more complex
685      * DOM structure created by their own onRender methods.</p>
686      * <p>This is intended to allow the developer to create application-specific utility Components encapsulated by
687      * different DOM elements. Example usage:</p><pre><code>
688 {
689     xtype: 'box',
690     autoEl: {
691         tag: 'img',
692         src: 'http://www.example.com/example.jpg'
693     }
694 }, {
695     xtype: 'box',
696     autoEl: {
697         tag: 'blockquote',
698         html: 'autoEl is cool!'
699     }
700 }, {
701     xtype: 'container',
702     autoEl: 'ul',
703     cls: 'ux-unordered-list',
704     items: {
705         xtype: 'box',
706         autoEl: 'li',
707         html: 'First list item'
708     }
709 }
710 </code></pre>
711      */
712     autoEl : 'div',
713
714     /**
715      * @cfg {String} disabledClass
716      * CSS class added to the component when it is disabled (defaults to 'x-item-disabled').
717      */
718     disabledClass : 'x-item-disabled',
719     /**
720      * @cfg {Boolean} allowDomMove
721      * Whether the component can move the Dom node when rendering (defaults to true).
722      */
723     allowDomMove : true,
724     /**
725      * @cfg {Boolean} autoShow
726      * True if the component should check for hidden classes (e.g. 'x-hidden' or 'x-hide-display') and remove
727      * them on render (defaults to false).
728      */
729     autoShow : false,
730     /**
731      * @cfg {String} hideMode
732      * <p>How this component should be hidden. Supported values are <tt>'visibility'</tt>
733      * (css visibility), <tt>'offsets'</tt> (negative offset position) and <tt>'display'</tt>
734      * (css display).</p>
735      * <br><p><b>Note</b>: the default of <tt>'display'</tt> is generally preferred
736      * since items are automatically laid out when they are first shown (no sizing
737      * is done while hidden).</p>
738      */
739     hideMode : 'display',
740     /**
741      * @cfg {Boolean} hideParent
742      * True to hide and show the component's container when hide/show is called on the component, false to hide
743      * and show the component itself (defaults to false).  For example, this can be used as a shortcut for a hide
744      * button on a window by setting hide:true on the button when adding it to its parent container.
745      */
746     hideParent : false,
747     /**
748      * <p>The {@link Ext.Element} which encapsulates this Component. Read-only.</p>
749      * <p>This will <i>usually</i> be a &lt;DIV> element created by the class's onRender method, but
750      * that may be overridden using the <code>{@link #autoEl}</code> config.</p>
751      * <br><p><b>Note</b>: this element will not be available until this Component has been rendered.</p><br>
752      * <p>To add listeners for <b>DOM events</b> to this Component (as opposed to listeners
753      * for this Component's own Observable events), see the {@link Ext.util.Observable#listeners listeners}
754      * config for a suggestion, or use a render listener directly:</p><pre><code>
755 new Ext.Panel({
756     title: 'The Clickable Panel',
757     listeners: {
758         render: function(p) {
759             // Append the Panel to the click handler&#39;s argument list.
760             p.getEl().on('click', handlePanelClick.createDelegate(null, [p], true));
761         },
762         single: true  // Remove the listener after first invocation
763     }
764 });
765 </code></pre>
766      * <p>See also <tt>{@link #getEl getEl}</p>
767      * @type Ext.Element
768      * @property el
769      */
770     /**
771      * This Component's owner {@link Ext.Container Container} (defaults to undefined, and is set automatically when
772      * this Component is added to a Container).  Read-only.
773      * <p><b>Note</b>: to access items within the Container see <tt>{@link #itemId}</tt>.</p>
774      * @type Ext.Container
775      * @property ownerCt
776      */
777     /**
778      * True if this component is hidden. Read-only.
779      * @type Boolean
780      * @property hidden
781      */
782     /**
783      * True if this component is disabled. Read-only.
784      * @type Boolean
785      * @property disabled
786      */
787     /**
788      * True if this component has been rendered. Read-only.
789      * @type Boolean
790      * @property rendered
791      */
792     rendered : false,
793
794     /**
795      * @cfg {String} contentEl
796      * <p>Optional. Specify an existing HTML element, or the <code>id</code> of an existing HTML element to use as the content
797      * for this component.</p>
798      * <ul>
799      * <li><b>Description</b> :
800      * <div class="sub-desc">This config option is used to take an existing HTML element and place it in the layout element
801      * of a new component (it simply moves the specified DOM element <i>after the Component is rendered</i> to use as the content.</div></li>
802      * <li><b>Notes</b> :
803      * <div class="sub-desc">The specified HTML element is appended to the layout element of the component <i>after any configured
804      * {@link #html HTML} has been inserted</i>, and so the document will not contain this element at the time the {@link #render} event is fired.</div>
805      * <div class="sub-desc">The specified HTML element used will not participate in any <code><b>{@link Ext.Container#layout layout}</b></code>
806      * scheme that the Component may use. It is just HTML. Layouts operate on child <code><b>{@link Ext.Container#items items}</b></code>.</div>
807      * <div class="sub-desc">Add either the <code>x-hidden</code> or the <code>x-hide-display</code> CSS class to
808      * prevent a brief flicker of the content before it is rendered to the panel.</div></li>
809      * </ul>
810      */
811     /**
812      * @cfg {String/Object} html
813      * An HTML fragment, or a {@link Ext.DomHelper DomHelper} specification to use as the layout element
814      * content (defaults to ''). The HTML content is added after the component is rendered,
815      * so the document will not contain this HTML at the time the {@link #render} event is fired.
816      * This content is inserted into the body <i>before</i> any configured {@link #contentEl} is appended.
817      */
818
819     /**
820      * @cfg {Mixed} tpl
821      * An <bold>{@link Ext.Template}</bold>, <bold>{@link Ext.XTemplate}</bold>
822      * or an array of strings to form an Ext.XTemplate.
823      * Used in conjunction with the <code>{@link #data}</code> and
824      * <code>{@link #tplWriteMode}</code> configurations.
825      */
826
827     /**
828      * @cfg {String} tplWriteMode The Ext.(X)Template method to use when
829      * updating the content area of the Component. Defaults to <tt>'overwrite'</tt>
830      * (see <code>{@link Ext.XTemplate#overwrite}</code>).
831      */
832     tplWriteMode : 'overwrite',
833
834     /**
835      * @cfg {Mixed} data
836      * The initial set of data to apply to the <code>{@link #tpl}</code> to
837      * update the content area of the Component.
838      */
839
840
841     // private
842     ctype : 'Ext.Component',
843
844     // private
845     actionMode : 'el',
846
847     // private
848     getActionEl : function(){
849         return this[this.actionMode];
850     },
851
852     initPlugin : function(p){
853         if(p.ptype && !Ext.isFunction(p.init)){
854             p = Ext.ComponentMgr.createPlugin(p);
855         }else if(Ext.isString(p)){
856             p = Ext.ComponentMgr.createPlugin({
857                 ptype: p
858             });
859         }
860         p.init(this);
861         return p;
862     },
863
864     /* // protected
865      * Function to be implemented by Component subclasses to be part of standard component initialization flow (it is empty by default).
866      * <pre><code>
867 // Traditional constructor:
868 Ext.Foo = function(config){
869     // call superclass constructor:
870     Ext.Foo.superclass.constructor.call(this, config);
871
872     this.addEvents({
873         // add events
874     });
875 };
876 Ext.extend(Ext.Foo, Ext.Bar, {
877    // class body
878 }
879
880 // initComponent replaces the constructor:
881 Ext.Foo = Ext.extend(Ext.Bar, {
882     initComponent : function(){
883         // call superclass initComponent
884         Ext.Container.superclass.initComponent.call(this);
885
886         this.addEvents({
887             // add events
888         });
889     }
890 }
891 </code></pre>
892      */
893     initComponent : Ext.emptyFn,
894
895     /**
896      * <p>Render this Component into the passed HTML element.</p>
897      * <p><b>If you are using a {@link Ext.Container Container} object to house this Component, then
898      * do not use the render method.</b></p>
899      * <p>A Container's child Components are rendered by that Container's
900      * {@link Ext.Container#layout layout} manager when the Container is first rendered.</p>
901      * <p>Certain layout managers allow dynamic addition of child components. Those that do
902      * include {@link Ext.layout.CardLayout}, {@link Ext.layout.AnchorLayout},
903      * {@link Ext.layout.FormLayout}, {@link Ext.layout.TableLayout}.</p>
904      * <p>If the Container is already rendered when a new child Component is added, you may need to call
905      * the Container's {@link Ext.Container#doLayout doLayout} to refresh the view which causes any
906      * unrendered child Components to be rendered. This is required so that you can add multiple
907      * child components if needed while only refreshing the layout once.</p>
908      * <p>When creating complex UIs, it is important to remember that sizing and positioning
909      * of child items is the responsibility of the Container's {@link Ext.Container#layout layout} manager.
910      * If you expect child items to be sized in response to user interactions, you must
911      * configure the Container with a layout manager which creates and manages the type of layout you
912      * have in mind.</p>
913      * <p><b>Omitting the Container's {@link Ext.Container#layout layout} config means that a basic
914      * layout manager is used which does nothing but render child components sequentially into the
915      * Container. No sizing or positioning will be performed in this situation.</b></p>
916      * @param {Element/HTMLElement/String} container (optional) The element this Component should be
917      * rendered into. If it is being created from existing markup, this should be omitted.
918      * @param {String/Number} position (optional) The element ID or DOM node index within the container <b>before</b>
919      * which this component will be inserted (defaults to appending to the end of the container)
920      */
921     render : function(container, position){
922         if(!this.rendered && this.fireEvent('beforerender', this) !== false){
923             if(!container && this.el){
924                 this.el = Ext.get(this.el);
925                 container = this.el.dom.parentNode;
926                 this.allowDomMove = false;
927             }
928             this.container = Ext.get(container);
929             if(this.ctCls){
930                 this.container.addClass(this.ctCls);
931             }
932             this.rendered = true;
933             if(position !== undefined){
934                 if(Ext.isNumber(position)){
935                     position = this.container.dom.childNodes[position];
936                 }else{
937                     position = Ext.getDom(position);
938                 }
939             }
940             this.onRender(this.container, position || null);
941             if(this.autoShow){
942                 this.el.removeClass(['x-hidden','x-hide-' + this.hideMode]);
943             }
944             if(this.cls){
945                 this.el.addClass(this.cls);
946                 delete this.cls;
947             }
948             if(this.style){
949                 this.el.applyStyles(this.style);
950                 delete this.style;
951             }
952             if(this.overCls){
953                 this.el.addClassOnOver(this.overCls);
954             }
955             this.fireEvent('render', this);
956
957
958             // Populate content of the component with html, contentEl or
959             // a tpl.
960             var contentTarget = this.getContentTarget();
961             if (this.html){
962                 contentTarget.update(Ext.DomHelper.markup(this.html));
963                 delete this.html;
964             }
965             if (this.contentEl){
966                 var ce = Ext.getDom(this.contentEl);
967                 Ext.fly(ce).removeClass(['x-hidden', 'x-hide-display']);
968                 contentTarget.appendChild(ce);
969             }
970             if (this.tpl) {
971                 if (!this.tpl.compile) {
972                     this.tpl = new Ext.XTemplate(this.tpl);
973                 }
974                 if (this.data) {
975                     this.tpl[this.tplWriteMode](contentTarget, this.data);
976                     delete this.data;
977                 }
978             }
979             this.afterRender(this.container);
980
981
982             if(this.hidden){
983                 // call this so we don't fire initial hide events.
984                 this.doHide();
985             }
986             if(this.disabled){
987                 // pass silent so the event doesn't fire the first time.
988                 this.disable(true);
989             }
990
991             if(this.stateful !== false){
992                 this.initStateEvents();
993             }
994             this.fireEvent('afterrender', this);
995         }
996         return this;
997     },
998
999
1000     /**
1001      * Update the content area of a component.
1002      * @param {Mixed} htmlOrData
1003      * If this component has been configured with a template via the tpl config
1004      * then it will use this argument as data to populate the template.
1005      * If this component was not configured with a template, the components
1006      * content area will be updated via Ext.Element update
1007      * @param {Boolean} loadScripts
1008      * (optional) Only legitimate when using the html configuration. Defaults to false
1009      * @param {Function} callback
1010      * (optional) Only legitimate when using the html configuration. Callback to execute when scripts have finished loading
1011      */
1012     update: function(htmlOrData, loadScripts, cb) {
1013         var contentTarget = this.getContentTarget();
1014         if (this.tpl && typeof htmlOrData !== "string") {
1015             this.tpl[this.tplWriteMode](contentTarget, htmlOrData || {});
1016         } else {
1017             var html = Ext.isObject(htmlOrData) ? Ext.DomHelper.markup(htmlOrData) : htmlOrData;
1018             contentTarget.update(html, loadScripts, cb);
1019         }
1020     },
1021
1022
1023     /**
1024      * @private
1025      * Method to manage awareness of when components are added to their
1026      * respective Container, firing an added event.
1027      * References are established at add time rather than at render time.
1028      * @param {Ext.Container} container Container which holds the component
1029      * @param {number} pos Position at which the component was added
1030      */
1031     onAdded : function(container, pos) {
1032         this.ownerCt = container;
1033         this.initRef();
1034         this.fireEvent('added', this, container, pos);
1035     },
1036
1037     /**
1038      * @private
1039      * Method to manage awareness of when components are removed from their
1040      * respective Container, firing an removed event. References are properly
1041      * cleaned up after removing a component from its owning container.
1042      */
1043     onRemoved : function() {
1044         this.removeRef();
1045         this.fireEvent('removed', this, this.ownerCt);
1046         delete this.ownerCt;
1047     },
1048
1049     /**
1050      * @private
1051      * Method to establish a reference to a component.
1052      */
1053     initRef : function() {
1054         /**
1055          * @cfg {String} ref
1056          * <p>A path specification, relative to the Component's <code>{@link #ownerCt}</code>
1057          * specifying into which ancestor Container to place a named reference to this Component.</p>
1058          * <p>The ancestor axis can be traversed by using '/' characters in the path.
1059          * For example, to put a reference to a Toolbar Button into <i>the Panel which owns the Toolbar</i>:</p><pre><code>
1060 var myGrid = new Ext.grid.EditorGridPanel({
1061     title: 'My EditorGridPanel',
1062     store: myStore,
1063     colModel: myColModel,
1064     tbar: [{
1065         text: 'Save',
1066         handler: saveChanges,
1067         disabled: true,
1068         ref: '../saveButton'
1069     }],
1070     listeners: {
1071         afteredit: function() {
1072 //          The button reference is in the GridPanel
1073             myGrid.saveButton.enable();
1074         }
1075     }
1076 });
1077 </code></pre>
1078          * <p>In the code above, if the <code>ref</code> had been <code>'saveButton'</code>
1079          * the reference would have been placed into the Toolbar. Each '/' in the <code>ref</code>
1080          * moves up one level from the Component's <code>{@link #ownerCt}</code>.</p>
1081          * <p>Also see the <code>{@link #added}</code> and <code>{@link #removed}</code> events.</p>
1082          */
1083         if(this.ref && !this.refOwner){
1084             var levels = this.ref.split('/'),
1085                 last = levels.length,
1086                 i = 0,
1087                 t = this;
1088
1089             while(t && i < last){
1090                 t = t.ownerCt;
1091                 ++i;
1092             }
1093             if(t){
1094                 t[this.refName = levels[--i]] = this;
1095                 /**
1096                  * @type Ext.Container
1097                  * @property refOwner
1098                  * The ancestor Container into which the {@link #ref} reference was inserted if this Component
1099                  * is a child of a Container, and has been configured with a <code>ref</code>.
1100                  */
1101                 this.refOwner = t;
1102             }
1103         }
1104     },
1105
1106     removeRef : function() {
1107         if (this.refOwner && this.refName) {
1108             delete this.refOwner[this.refName];
1109             delete this.refOwner;
1110         }
1111     },
1112
1113     // private
1114     initState : function(){
1115         if(Ext.state.Manager){
1116             var id = this.getStateId();
1117             if(id){
1118                 var state = Ext.state.Manager.get(id);
1119                 if(state){
1120                     if(this.fireEvent('beforestaterestore', this, state) !== false){
1121                         this.applyState(Ext.apply({}, state));
1122                         this.fireEvent('staterestore', this, state);
1123                     }
1124                 }
1125             }
1126         }
1127     },
1128
1129     // private
1130     getStateId : function(){
1131         return this.stateId || ((/^(ext-comp-|ext-gen)/).test(String(this.id)) ? null : this.id);
1132     },
1133
1134     // private
1135     initStateEvents : function(){
1136         if(this.stateEvents){
1137             for(var i = 0, e; e = this.stateEvents[i]; i++){
1138                 this.on(e, this.saveState, this, {delay:100});
1139             }
1140         }
1141     },
1142
1143     // private
1144     applyState : function(state){
1145         if(state){
1146             Ext.apply(this, state);
1147         }
1148     },
1149
1150     // private
1151     getState : function(){
1152         return null;
1153     },
1154
1155     // private
1156     saveState : function(){
1157         if(Ext.state.Manager && this.stateful !== false){
1158             var id = this.getStateId();
1159             if(id){
1160                 var state = this.getState();
1161                 if(this.fireEvent('beforestatesave', this, state) !== false){
1162                     Ext.state.Manager.set(id, state);
1163                     this.fireEvent('statesave', this, state);
1164                 }
1165             }
1166         }
1167     },
1168
1169     /**
1170      * Apply this component to existing markup that is valid. With this function, no call to render() is required.
1171      * @param {String/HTMLElement} el
1172      */
1173     applyToMarkup : function(el){
1174         this.allowDomMove = false;
1175         this.el = Ext.get(el);
1176         this.render(this.el.dom.parentNode);
1177     },
1178
1179     /**
1180      * Adds a CSS class to the component's underlying element.
1181      * @param {string} cls The CSS class name to add
1182      * @return {Ext.Component} this
1183      */
1184     addClass : function(cls){
1185         if(this.el){
1186             this.el.addClass(cls);
1187         }else{
1188             this.cls = this.cls ? this.cls + ' ' + cls : cls;
1189         }
1190         return this;
1191     },
1192
1193     /**
1194      * Removes a CSS class from the component's underlying element.
1195      * @param {string} cls The CSS class name to remove
1196      * @return {Ext.Component} this
1197      */
1198     removeClass : function(cls){
1199         if(this.el){
1200             this.el.removeClass(cls);
1201         }else if(this.cls){
1202             this.cls = this.cls.split(' ').remove(cls).join(' ');
1203         }
1204         return this;
1205     },
1206
1207     // private
1208     // default function is not really useful
1209     onRender : function(ct, position){
1210         if(!this.el && this.autoEl){
1211             if(Ext.isString(this.autoEl)){
1212                 this.el = document.createElement(this.autoEl);
1213             }else{
1214                 var div = document.createElement('div');
1215                 Ext.DomHelper.overwrite(div, this.autoEl);
1216                 this.el = div.firstChild;
1217             }
1218             if (!this.el.id) {
1219                 this.el.id = this.getId();
1220             }
1221         }
1222         if(this.el){
1223             this.el = Ext.get(this.el);
1224             if(this.allowDomMove !== false){
1225                 ct.dom.insertBefore(this.el.dom, position);
1226                 if (div) {
1227                     Ext.removeNode(div);
1228                     div = null;
1229                 }
1230             }
1231         }
1232     },
1233
1234     // private
1235     getAutoCreate : function(){
1236         var cfg = Ext.isObject(this.autoCreate) ?
1237                       this.autoCreate : Ext.apply({}, this.defaultAutoCreate);
1238         if(this.id && !cfg.id){
1239             cfg.id = this.id;
1240         }
1241         return cfg;
1242     },
1243
1244     // private
1245     afterRender : Ext.emptyFn,
1246
1247     /**
1248      * Destroys this component by purging any event listeners, removing the component's element from the DOM,
1249      * removing the component from its {@link Ext.Container} (if applicable) and unregistering it from
1250      * {@link Ext.ComponentMgr}.  Destruction is generally handled automatically by the framework and this method
1251      * should usually not need to be called directly.
1252      *
1253      */
1254     destroy : function(){
1255         if(!this.isDestroyed){
1256             if(this.fireEvent('beforedestroy', this) !== false){
1257                 this.destroying = true;
1258                 this.beforeDestroy();
1259                 if(this.ownerCt && this.ownerCt.remove){
1260                     this.ownerCt.remove(this, false);
1261                 }
1262                 if(this.rendered){
1263                     this.el.remove();
1264                     if(this.actionMode == 'container' || this.removeMode == 'container'){
1265                         this.container.remove();
1266                     }
1267                 }
1268                 this.onDestroy();
1269                 Ext.ComponentMgr.unregister(this);
1270                 this.fireEvent('destroy', this);
1271                 this.purgeListeners();
1272                 this.destroying = false;
1273                 this.isDestroyed = true;
1274             }
1275         }
1276     },
1277
1278     deleteMembers : function(){
1279         var args = arguments;
1280         for(var i = 0, len = args.length; i < len; ++i){
1281             delete this[args[i]];
1282         }
1283     },
1284
1285     // private
1286     beforeDestroy : Ext.emptyFn,
1287
1288     // private
1289     onDestroy  : Ext.emptyFn,
1290
1291     /**
1292      * <p>Returns the {@link Ext.Element} which encapsulates this Component.</p>
1293      * <p>This will <i>usually</i> be a &lt;DIV> element created by the class's onRender method, but
1294      * that may be overridden using the {@link #autoEl} config.</p>
1295      * <br><p><b>Note</b>: this element will not be available until this Component has been rendered.</p><br>
1296      * <p>To add listeners for <b>DOM events</b> to this Component (as opposed to listeners
1297      * for this Component's own Observable events), see the {@link #listeners} config for a suggestion,
1298      * or use a render listener directly:</p><pre><code>
1299 new Ext.Panel({
1300     title: 'The Clickable Panel',
1301     listeners: {
1302         render: function(p) {
1303             // Append the Panel to the click handler&#39;s argument list.
1304             p.getEl().on('click', handlePanelClick.createDelegate(null, [p], true));
1305         },
1306         single: true  // Remove the listener after first invocation
1307     }
1308 });
1309 </code></pre>
1310      * @return {Ext.Element} The Element which encapsulates this Component.
1311      */
1312     getEl : function(){
1313         return this.el;
1314     },
1315
1316     // private
1317     getContentTarget : function(){
1318         return this.el;
1319     },
1320
1321     /**
1322      * Returns the <code>id</code> of this component or automatically generates and
1323      * returns an <code>id</code> if an <code>id</code> is not defined yet:<pre><code>
1324      * 'ext-comp-' + (++Ext.Component.AUTO_ID)
1325      * </code></pre>
1326      * @return {String} id
1327      */
1328     getId : function(){
1329         return this.id || (this.id = 'ext-comp-' + (++Ext.Component.AUTO_ID));
1330     },
1331
1332     /**
1333      * Returns the <code>{@link #itemId}</code> of this component.  If an
1334      * <code>{@link #itemId}</code> was not assigned through configuration the
1335      * <code>id</code> is returned using <code>{@link #getId}</code>.
1336      * @return {String}
1337      */
1338     getItemId : function(){
1339         return this.itemId || this.getId();
1340     },
1341
1342     /**
1343      * Try to focus this component.
1344      * @param {Boolean} selectText (optional) If applicable, true to also select the text in this component
1345      * @param {Boolean/Number} delay (optional) Delay the focus this number of milliseconds (true for 10 milliseconds)
1346      * @return {Ext.Component} this
1347      */
1348     focus : function(selectText, delay){
1349         if(delay){
1350             this.focus.defer(Ext.isNumber(delay) ? delay : 10, this, [selectText, false]);
1351             return;
1352         }
1353         if(this.rendered){
1354             this.el.focus();
1355             if(selectText === true){
1356                 this.el.dom.select();
1357             }
1358         }
1359         return this;
1360     },
1361
1362     // private
1363     blur : function(){
1364         if(this.rendered){
1365             this.el.blur();
1366         }
1367         return this;
1368     },
1369
1370     /**
1371      * Disable this component and fire the 'disable' event.
1372      * @return {Ext.Component} this
1373      */
1374     disable : function(/* private */ silent){
1375         if(this.rendered){
1376             this.onDisable();
1377         }
1378         this.disabled = true;
1379         if(silent !== true){
1380             this.fireEvent('disable', this);
1381         }
1382         return this;
1383     },
1384
1385     // private
1386     onDisable : function(){
1387         this.getActionEl().addClass(this.disabledClass);
1388         this.el.dom.disabled = true;
1389     },
1390
1391     /**
1392      * Enable this component and fire the 'enable' event.
1393      * @return {Ext.Component} this
1394      */
1395     enable : function(){
1396         if(this.rendered){
1397             this.onEnable();
1398         }
1399         this.disabled = false;
1400         this.fireEvent('enable', this);
1401         return this;
1402     },
1403
1404     // private
1405     onEnable : function(){
1406         this.getActionEl().removeClass(this.disabledClass);
1407         this.el.dom.disabled = false;
1408     },
1409
1410     /**
1411      * Convenience function for setting disabled/enabled by boolean.
1412      * @param {Boolean} disabled
1413      * @return {Ext.Component} this
1414      */
1415     setDisabled : function(disabled){
1416         return this[disabled ? 'disable' : 'enable']();
1417     },
1418
1419     /**
1420      * Show this component.  Listen to the '{@link #beforeshow}' event and return
1421      * <tt>false</tt> to cancel showing the component.  Fires the '{@link #show}'
1422      * event after showing the component.
1423      * @return {Ext.Component} this
1424      */
1425     show : function(){
1426         if(this.fireEvent('beforeshow', this) !== false){
1427             this.hidden = false;
1428             if(this.autoRender){
1429                 this.render(Ext.isBoolean(this.autoRender) ? Ext.getBody() : this.autoRender);
1430             }
1431             if(this.rendered){
1432                 this.onShow();
1433             }
1434             this.fireEvent('show', this);
1435         }
1436         return this;
1437     },
1438
1439     // private
1440     onShow : function(){
1441         this.getVisibilityEl().removeClass('x-hide-' + this.hideMode);
1442     },
1443
1444     /**
1445      * Hide this component.  Listen to the '{@link #beforehide}' event and return
1446      * <tt>false</tt> to cancel hiding the component.  Fires the '{@link #hide}'
1447      * event after hiding the component. Note this method is called internally if
1448      * the component is configured to be <code>{@link #hidden}</code>.
1449      * @return {Ext.Component} this
1450      */
1451     hide : function(){
1452         if(this.fireEvent('beforehide', this) !== false){
1453             this.doHide();
1454             this.fireEvent('hide', this);
1455         }
1456         return this;
1457     },
1458
1459     // private
1460     doHide: function(){
1461         this.hidden = true;
1462         if(this.rendered){
1463             this.onHide();
1464         }
1465     },
1466
1467     // private
1468     onHide : function(){
1469         this.getVisibilityEl().addClass('x-hide-' + this.hideMode);
1470     },
1471
1472     // private
1473     getVisibilityEl : function(){
1474         return this.hideParent ? this.container : this.getActionEl();
1475     },
1476
1477     /**
1478      * Convenience function to hide or show this component by boolean.
1479      * @param {Boolean} visible True to show, false to hide
1480      * @return {Ext.Component} this
1481      */
1482     setVisible : function(visible){
1483         return this[visible ? 'show' : 'hide']();
1484     },
1485
1486     /**
1487      * Returns true if this component is visible.
1488      * @return {Boolean} True if this component is visible, false otherwise.
1489      */
1490     isVisible : function(){
1491         return this.rendered && this.getVisibilityEl().isVisible();
1492     },
1493
1494     /**
1495      * Clone the current component using the original config values passed into this instance by default.
1496      * @param {Object} overrides A new config containing any properties to override in the cloned version.
1497      * An id property can be passed on this object, otherwise one will be generated to avoid duplicates.
1498      * @return {Ext.Component} clone The cloned copy of this component
1499      */
1500     cloneConfig : function(overrides){
1501         overrides = overrides || {};
1502         var id = overrides.id || Ext.id();
1503         var cfg = Ext.applyIf(overrides, this.initialConfig);
1504         cfg.id = id; // prevent dup id
1505         return new this.constructor(cfg);
1506     },
1507
1508     /**
1509      * Gets the xtype for this component as registered with {@link Ext.ComponentMgr}. For a list of all
1510      * available xtypes, see the {@link Ext.Component} header. Example usage:
1511      * <pre><code>
1512 var t = new Ext.form.TextField();
1513 alert(t.getXType());  // alerts 'textfield'
1514 </code></pre>
1515      * @return {String} The xtype
1516      */
1517     getXType : function(){
1518         return this.constructor.xtype;
1519     },
1520
1521     /**
1522      * <p>Tests whether or not this Component is of a specific xtype. This can test whether this Component is descended
1523      * from the xtype (default) or whether it is directly of the xtype specified (shallow = true).</p>
1524      * <p><b>If using your own subclasses, be aware that a Component must register its own xtype
1525      * to participate in determination of inherited xtypes.</b></p>
1526      * <p>For a list of all available xtypes, see the {@link Ext.Component} header.</p>
1527      * <p>Example usage:</p>
1528      * <pre><code>
1529 var t = new Ext.form.TextField();
1530 var isText = t.isXType('textfield');        // true
1531 var isBoxSubclass = t.isXType('box');       // true, descended from BoxComponent
1532 var isBoxInstance = t.isXType('box', true); // false, not a direct BoxComponent instance
1533 </code></pre>
1534      * @param {String} xtype The xtype to check for this Component
1535      * @param {Boolean} shallow (optional) False to check whether this Component is descended from the xtype (this is
1536      * the default), or true to check whether this Component is directly of the specified xtype.
1537      * @return {Boolean} True if this component descends from the specified xtype, false otherwise.
1538      */
1539     isXType : function(xtype, shallow){
1540         //assume a string by default
1541         if (Ext.isFunction(xtype)){
1542             xtype = xtype.xtype; //handle being passed the class, e.g. Ext.Component
1543         }else if (Ext.isObject(xtype)){
1544             xtype = xtype.constructor.xtype; //handle being passed an instance
1545         }
1546
1547         return !shallow ? ('/' + this.getXTypes() + '/').indexOf('/' + xtype + '/') != -1 : this.constructor.xtype == xtype;
1548     },
1549
1550     /**
1551      * <p>Returns this Component's xtype hierarchy as a slash-delimited string. For a list of all
1552      * available xtypes, see the {@link Ext.Component} header.</p>
1553      * <p><b>If using your own subclasses, be aware that a Component must register its own xtype
1554      * to participate in determination of inherited xtypes.</b></p>
1555      * <p>Example usage:</p>
1556      * <pre><code>
1557 var t = new Ext.form.TextField();
1558 alert(t.getXTypes());  // alerts 'component/box/field/textfield'
1559 </code></pre>
1560      * @return {String} The xtype hierarchy string
1561      */
1562     getXTypes : function(){
1563         var tc = this.constructor;
1564         if(!tc.xtypes){
1565             var c = [], sc = this;
1566             while(sc && sc.constructor.xtype){
1567                 c.unshift(sc.constructor.xtype);
1568                 sc = sc.constructor.superclass;
1569             }
1570             tc.xtypeChain = c;
1571             tc.xtypes = c.join('/');
1572         }
1573         return tc.xtypes;
1574     },
1575
1576     /**
1577      * Find a container above this component at any level by a custom function. If the passed function returns
1578      * true, the container will be returned.
1579      * @param {Function} fn The custom function to call with the arguments (container, this component).
1580      * @return {Ext.Container} The first Container for which the custom function returns true
1581      */
1582     findParentBy : function(fn) {
1583         for (var p = this.ownerCt; (p != null) && !fn(p, this); p = p.ownerCt);
1584         return p || null;
1585     },
1586
1587     /**
1588      * Find a container above this component at any level by xtype or class
1589      * @param {String/Class} xtype The xtype string for a component, or the class of the component directly
1590      * @return {Ext.Container} The first Container which matches the given xtype or class
1591      */
1592     findParentByType : function(xtype) {
1593         return Ext.isFunction(xtype) ?
1594             this.findParentBy(function(p){
1595                 return p.constructor === xtype;
1596             }) :
1597             this.findParentBy(function(p){
1598                 return p.constructor.xtype === xtype;
1599             });
1600     },
1601
1602     // protected
1603     getPositionEl : function(){
1604         return this.positionEl || this.el;
1605     },
1606
1607     // private
1608     purgeListeners : function(){
1609         Ext.Component.superclass.purgeListeners.call(this);
1610         if(this.mons){
1611             this.on('beforedestroy', this.clearMons, this, {single: true});
1612         }
1613     },
1614
1615     // private
1616     clearMons : function(){
1617         Ext.each(this.mons, function(m){
1618             m.item.un(m.ename, m.fn, m.scope);
1619         }, this);
1620         this.mons = [];
1621     },
1622
1623     // private
1624     createMons: function(){
1625         if(!this.mons){
1626             this.mons = [];
1627             this.on('beforedestroy', this.clearMons, this, {single: true});
1628         }
1629     },
1630
1631     /**
1632      * <p>Adds listeners to any Observable object (or Elements) which are automatically removed when this Component
1633      * is destroyed. Usage:</p><code><pre>
1634 myGridPanel.mon(myGridPanel.getSelectionModel(), 'selectionchange', handleSelectionChange, null, {buffer: 50});
1635 </pre></code>
1636      * <p>or:</p><code><pre>
1637 myGridPanel.mon(myGridPanel.getSelectionModel(), {
1638     selectionchange: handleSelectionChange,
1639     buffer: 50
1640 });
1641 </pre></code>
1642      * @param {Observable|Element} item The item to which to add a listener/listeners.
1643      * @param {Object|String} ename The event name, or an object containing event name properties.
1644      * @param {Function} fn Optional. If the <code>ename</code> parameter was an event name, this
1645      * is the handler function.
1646      * @param {Object} scope Optional. If the <code>ename</code> parameter was an event name, this
1647      * is the scope (<code>this</code> reference) in which the handler function is executed.
1648      * @param {Object} opt Optional. If the <code>ename</code> parameter was an event name, this
1649      * is the {@link Ext.util.Observable#addListener addListener} options.
1650      */
1651     mon : function(item, ename, fn, scope, opt){
1652         this.createMons();
1653         if(Ext.isObject(ename)){
1654             var propRe = /^(?:scope|delay|buffer|single|stopEvent|preventDefault|stopPropagation|normalized|args|delegate)$/;
1655
1656             var o = ename;
1657             for(var e in o){
1658                 if(propRe.test(e)){
1659                     continue;
1660                 }
1661                 if(Ext.isFunction(o[e])){
1662                     // shared options
1663                     this.mons.push({
1664                         item: item, ename: e, fn: o[e], scope: o.scope
1665                     });
1666                     item.on(e, o[e], o.scope, o);
1667                 }else{
1668                     // individual options
1669                     this.mons.push({
1670                         item: item, ename: e, fn: o[e], scope: o.scope
1671                     });
1672                     item.on(e, o[e]);
1673                 }
1674             }
1675             return;
1676         }
1677
1678         this.mons.push({
1679             item: item, ename: ename, fn: fn, scope: scope
1680         });
1681         item.on(ename, fn, scope, opt);
1682     },
1683
1684     /**
1685      * Removes listeners that were added by the {@link #mon} method.
1686      * @param {Observable|Element} item The item from which to remove a listener/listeners.
1687      * @param {Object|String} ename The event name, or an object containing event name properties.
1688      * @param {Function} fn Optional. If the <code>ename</code> parameter was an event name, this
1689      * is the handler function.
1690      * @param {Object} scope Optional. If the <code>ename</code> parameter was an event name, this
1691      * is the scope (<code>this</code> reference) in which the handler function is executed.
1692      */
1693     mun : function(item, ename, fn, scope){
1694         var found, mon;
1695         this.createMons();
1696         for(var i = 0, len = this.mons.length; i < len; ++i){
1697             mon = this.mons[i];
1698             if(item === mon.item && ename == mon.ename && fn === mon.fn && scope === mon.scope){
1699                 this.mons.splice(i, 1);
1700                 item.un(ename, fn, scope);
1701                 found = true;
1702                 break;
1703             }
1704         }
1705         return found;
1706     },
1707
1708     /**
1709      * Returns the next component in the owning container
1710      * @return Ext.Component
1711      */
1712     nextSibling : function(){
1713         if(this.ownerCt){
1714             var index = this.ownerCt.items.indexOf(this);
1715             if(index != -1 && index+1 < this.ownerCt.items.getCount()){
1716                 return this.ownerCt.items.itemAt(index+1);
1717             }
1718         }
1719         return null;
1720     },
1721
1722     /**
1723      * Returns the previous component in the owning container
1724      * @return Ext.Component
1725      */
1726     previousSibling : function(){
1727         if(this.ownerCt){
1728             var index = this.ownerCt.items.indexOf(this);
1729             if(index > 0){
1730                 return this.ownerCt.items.itemAt(index-1);
1731             }
1732         }
1733         return null;
1734     },
1735
1736     /**
1737      * Provides the link for Observable's fireEvent method to bubble up the ownership hierarchy.
1738      * @return {Ext.Container} the Container which owns this Component.
1739      */
1740     getBubbleTarget : function(){
1741         return this.ownerCt;
1742     }
1743 });
1744
1745 Ext.reg('component', Ext.Component);