Container.js
上传用户:dawnssy
上传日期:2022-08-06
资源大小:9345k
文件大小:41k
源码类别:

JavaScript

开发平台:

JavaScript

  1. /*!
  2.  * Ext JS Library 3.1.0
  3.  * Copyright(c) 2006-2009 Ext JS, LLC
  4.  * licensing@extjs.com
  5.  * http://www.extjs.com/license
  6.  */
  7. /**
  8.  * @class Ext.Container
  9.  * @extends Ext.BoxComponent
  10.  * <p>Base class for any {@link Ext.BoxComponent} that may contain other Components. Containers handle the
  11.  * basic behavior of containing items, namely adding, inserting and removing items.</p>
  12.  *
  13.  * <p>The most commonly used Container classes are {@link Ext.Panel}, {@link Ext.Window} and {@link Ext.TabPanel}.
  14.  * If you do not need the capabilities offered by the aforementioned classes you can create a lightweight
  15.  * Container to be encapsulated by an HTML element to your specifications by using the
  16.  * <code><b>{@link Ext.Component#autoEl autoEl}</b></code> config option. This is a useful technique when creating
  17.  * embedded {@link Ext.layout.ColumnLayout column} layouts inside {@link Ext.form.FormPanel FormPanels}
  18.  * for example.</p>
  19.  *
  20.  * <p>The code below illustrates both how to explicitly create a Container, and how to implicitly
  21.  * create one using the <b><code>'container'</code></b> xtype:<pre><code>
  22. // explicitly create a Container
  23. var embeddedColumns = new Ext.Container({
  24.     autoEl: 'div',  // This is the default
  25.     layout: 'column',
  26.     defaults: {
  27.         // implicitly create Container by specifying xtype
  28.         xtype: 'container',
  29.         autoEl: 'div', // This is the default.
  30.         layout: 'form',
  31.         columnWidth: 0.5,
  32.         style: {
  33.             padding: '10px'
  34.         }
  35.     },
  36. //  The two items below will be Ext.Containers, each encapsulated by a &lt;DIV> element.
  37.     items: [{
  38.         items: {
  39.             xtype: 'datefield',
  40.             name: 'startDate',
  41.             fieldLabel: 'Start date'
  42.         }
  43.     }, {
  44.         items: {
  45.             xtype: 'datefield',
  46.             name: 'endDate',
  47.             fieldLabel: 'End date'
  48.         }
  49.     }]
  50. });</code></pre></p>
  51.  *
  52.  * <p><u><b>Layout</b></u></p>
  53.  * <p>Container classes delegate the rendering of child Components to a layout
  54.  * manager class which must be configured into the Container using the
  55.  * <code><b>{@link #layout}</b></code> configuration property.</p>
  56.  * <p>When either specifying child <code>{@link #items}</code> of a Container,
  57.  * or dynamically {@link #add adding} Components to a Container, remember to
  58.  * consider how you wish the Container to arrange those child elements, and
  59.  * whether those child elements need to be sized using one of Ext's built-in
  60.  * <b><code>{@link #layout}</code></b> schemes. By default, Containers use the
  61.  * {@link Ext.layout.ContainerLayout ContainerLayout} scheme which only
  62.  * renders child components, appending them one after the other inside the
  63.  * Container, and <b>does not apply any sizing</b> at all.</p>
  64.  * <p>A common mistake is when a developer neglects to specify a
  65.  * <b><code>{@link #layout}</code></b> (e.g. widgets like GridPanels or
  66.  * TreePanels are added to Containers for which no <code><b>{@link #layout}</b></code>
  67.  * has been specified). If a Container is left to use the default
  68.  * {@link Ext.layout.ContainerLayout ContainerLayout} scheme, none of its
  69.  * child components will be resized, or changed in any way when the Container
  70.  * is resized.</p>
  71.  * <p>Certain layout managers allow dynamic addition of child components.
  72.  * Those that do include {@link Ext.layout.CardLayout},
  73.  * {@link Ext.layout.AnchorLayout}, {@link Ext.layout.FormLayout}, and
  74.  * {@link Ext.layout.TableLayout}. For example:<pre><code>
  75. //  Create the GridPanel.
  76. var myNewGrid = new Ext.grid.GridPanel({
  77.     store: myStore,
  78.     columns: myColumnModel,
  79.     title: 'Results', // the title becomes the title of the tab
  80. });
  81. myTabPanel.add(myNewGrid); // {@link Ext.TabPanel} implicitly uses {@link Ext.layout.CardLayout CardLayout}
  82. myTabPanel.{@link Ext.TabPanel#setActiveTab setActiveTab}(myNewGrid);
  83.  * </code></pre></p>
  84.  * <p>The example above adds a newly created GridPanel to a TabPanel. Note that
  85.  * a TabPanel uses {@link Ext.layout.CardLayout} as its layout manager which
  86.  * means all its child items are sized to {@link Ext.layout.FitLayout fit}
  87.  * exactly into its client area.
  88.  * <p><b><u>Overnesting is a common problem</u></b>.
  89.  * An example of overnesting occurs when a GridPanel is added to a TabPanel
  90.  * by wrapping the GridPanel <i>inside</i> a wrapping Panel (that has no
  91.  * <code><b>{@link #layout}</b></code> specified) and then add that wrapping Panel
  92.  * to the TabPanel. The point to realize is that a GridPanel <b>is</b> a
  93.  * Component which can be added directly to a Container. If the wrapping Panel
  94.  * has no <code><b>{@link #layout}</b></code> configuration, then the overnested
  95.  * GridPanel will not be sized as expected.<p>
  96.  *
  97.  * <p><u><b>Adding via remote configuration</b></u></p>
  98.  *
  99.  * <p>A server side script can be used to add Components which are generated dynamically on the server.
  100.  * An example of adding a GridPanel to a TabPanel where the GridPanel is generated by the server
  101.  * based on certain parameters:
  102.  * </p><pre><code>
  103. // execute an Ajax request to invoke server side script:
  104. Ext.Ajax.request({
  105.     url: 'gen-invoice-grid.php',
  106.     // send additional parameters to instruct server script
  107.     params: {
  108.         startDate: Ext.getCmp('start-date').getValue(),
  109.         endDate: Ext.getCmp('end-date').getValue()
  110.     },
  111.     // process the response object to add it to the TabPanel:
  112.     success: function(xhr) {
  113.         var newComponent = eval(xhr.responseText); // see discussion below
  114.         myTabPanel.add(newComponent); // add the component to the TabPanel
  115.         myTabPanel.setActiveTab(newComponent);
  116.     },
  117.     failure: function() {
  118.         Ext.Msg.alert("Grid create failed", "Server communication failure");
  119.     }
  120. });
  121. </code></pre>
  122.  * <p>The server script needs to return an executable Javascript statement which, when processed
  123.  * using <code>eval()</code>, will return either a config object with an {@link Ext.Component#xtype xtype},
  124.  * or an instantiated Component. The server might return this for example:</p><pre><code>
  125. (function() {
  126.     function formatDate(value){
  127.         return value ? value.dateFormat('M d, Y') : '';
  128.     };
  129.     var store = new Ext.data.Store({
  130.         url: 'get-invoice-data.php',
  131.         baseParams: {
  132.             startDate: '01/01/2008',
  133.             endDate: '01/31/2008'
  134.         },
  135.         reader: new Ext.data.JsonReader({
  136.             record: 'transaction',
  137.             idProperty: 'id',
  138.             totalRecords: 'total'
  139.         }, [
  140.            'customer',
  141.            'invNo',
  142.            {name: 'date', type: 'date', dateFormat: 'm/d/Y'},
  143.            {name: 'value', type: 'float'}
  144.         ])
  145.     });
  146.     var grid = new Ext.grid.GridPanel({
  147.         title: 'Invoice Report',
  148.         bbar: new Ext.PagingToolbar(store),
  149.         store: store,
  150.         columns: [
  151.             {header: "Customer", width: 250, dataIndex: 'customer', sortable: true},
  152.             {header: "Invoice Number", width: 120, dataIndex: 'invNo', sortable: true},
  153.             {header: "Invoice Date", width: 100, dataIndex: 'date', renderer: formatDate, sortable: true},
  154.             {header: "Value", width: 120, dataIndex: 'value', renderer: 'usMoney', sortable: true}
  155.         ],
  156.     });
  157.     store.load();
  158.     return grid;  // return instantiated component
  159. })();
  160. </code></pre>
  161.  * <p>When the above code fragment is passed through the <code>eval</code> function in the success handler
  162.  * of the Ajax request, the code is executed by the Javascript processor, and the anonymous function
  163.  * runs, and returns the instantiated grid component.</p>
  164.  * <p>Note: since the code above is <i>generated</i> by a server script, the <code>baseParams</code> for
  165.  * the Store, the metadata to allow generation of the Record layout, and the ColumnModel
  166.  * can all be generated into the code since these are all known on the server.</p>
  167.  *
  168.  * @xtype container
  169.  */
  170. Ext.Container = Ext.extend(Ext.BoxComponent, {
  171.     /**
  172.      * @cfg {Boolean} monitorResize
  173.      * True to automatically monitor window resize events to handle anything that is sensitive to the current size
  174.      * of the viewport.  This value is typically managed by the chosen <code>{@link #layout}</code> and should not need
  175.      * to be set manually.
  176.      */
  177.     /**
  178.      * @cfg {String/Object} layout
  179.      * <p><b>*Important</b>: In order for child items to be correctly sized and
  180.      * positioned, typically a layout manager <b>must</b> be specified through
  181.      * the <code>layout</code> configuration option.</p>
  182.      * <br><p>The sizing and positioning of child {@link items} is the responsibility of
  183.      * the Container's layout manager which creates and manages the type of layout
  184.      * you have in mind.  For example:</p><pre><code>
  185. new Ext.Window({
  186.     width:300, height: 300,
  187.     layout: 'fit', // explicitly set layout manager: override the default (layout:'auto')
  188.     items: [{
  189.         title: 'Panel inside a Window'
  190.     }]
  191. }).show();
  192.      * </code></pre>
  193.      * <p>If the {@link #layout} configuration is not explicitly specified for
  194.      * a general purpose container (e.g. Container or Panel) the
  195.      * {@link Ext.layout.ContainerLayout default layout manager} will be used
  196.      * which does nothing but render child components sequentially into the
  197.      * Container (no sizing or positioning will be performed in this situation).
  198.      * Some container classes implicitly specify a default layout
  199.      * (e.g. FormPanel specifies <code>layout:'form'</code>). Other specific
  200.      * purpose classes internally specify/manage their internal layout (e.g.
  201.      * GridPanel, TabPanel, TreePanel, Toolbar, Menu, etc.).</p>
  202.      * <br><p><b><code>layout</code></b> may be specified as either as an Object or
  203.      * as a String:</p><div><ul class="mdetail-params">
  204.      *
  205.      * <li><u>Specify as an Object</u></li>
  206.      * <div><ul class="mdetail-params">
  207.      * <li>Example usage:</li>
  208. <pre><code>
  209. layout: {
  210.     type: 'vbox',
  211.     padding: '5',
  212.     align: 'left'
  213. }
  214. </code></pre>
  215.      *
  216.      * <li><code><b>type</b></code></li>
  217.      * <br/><p>The layout type to be used for this container.  If not specified,
  218.      * a default {@link Ext.layout.ContainerLayout} will be created and used.</p>
  219.      * <br/><p>Valid layout <code>type</code> values are:</p>
  220.      * <div class="sub-desc"><ul class="mdetail-params">
  221.      * <li><code><b>{@link Ext.layout.AbsoluteLayout absolute}</b></code></li>
  222.      * <li><code><b>{@link Ext.layout.AccordionLayout accordion}</b></code></li>
  223.      * <li><code><b>{@link Ext.layout.AnchorLayout anchor}</b></code></li>
  224.      * <li><code><b>{@link Ext.layout.ContainerLayout auto}</b></code> &nbsp;&nbsp;&nbsp; <b>Default</b></li>
  225.      * <li><code><b>{@link Ext.layout.BorderLayout border}</b></code></li>
  226.      * <li><code><b>{@link Ext.layout.CardLayout card}</b></code></li>
  227.      * <li><code><b>{@link Ext.layout.ColumnLayout column}</b></code></li>
  228.      * <li><code><b>{@link Ext.layout.FitLayout fit}</b></code></li>
  229.      * <li><code><b>{@link Ext.layout.FormLayout form}</b></code></li>
  230.      * <li><code><b>{@link Ext.layout.HBoxLayout hbox}</b></code></li>
  231.      * <li><code><b>{@link Ext.layout.MenuLayout menu}</b></code></li>
  232.      * <li><code><b>{@link Ext.layout.TableLayout table}</b></code></li>
  233.      * <li><code><b>{@link Ext.layout.ToolbarLayout toolbar}</b></code></li>
  234.      * <li><code><b>{@link Ext.layout.VBoxLayout vbox}</b></code></li>
  235.      * </ul></div>
  236.      *
  237.      * <li>Layout specific configuration properties</li>
  238.      * <br/><p>Additional layout specific configuration properties may also be
  239.      * specified. For complete details regarding the valid config options for
  240.      * each layout type, see the layout class corresponding to the <code>type</code>
  241.      * specified.</p>
  242.      *
  243.      * </ul></div>
  244.      *
  245.      * <li><u>Specify as a String</u></li>
  246.      * <div><ul class="mdetail-params">
  247.      * <li>Example usage:</li>
  248. <pre><code>
  249. layout: 'vbox',
  250. layoutConfig: {
  251.     padding: '5',
  252.     align: 'left'
  253. }
  254. </code></pre>
  255.      * <li><code><b>layout</b></code></li>
  256.      * <br/><p>The layout <code>type</code> to be used for this container (see list
  257.      * of valid layout type values above).</p><br/>
  258.      * <li><code><b>{@link #layoutConfig}</b></code></li>
  259.      * <br/><p>Additional layout specific configuration properties. For complete
  260.      * details regarding the valid config options for each layout type, see the
  261.      * layout class corresponding to the <code>layout</code> specified.</p>
  262.      * </ul></div></ul></div>
  263.      */
  264.     /**
  265.      * @cfg {Object} layoutConfig
  266.      * This is a config object containing properties specific to the chosen
  267.      * <b><code>{@link #layout}</code></b> if <b><code>{@link #layout}</code></b>
  268.      * has been specified as a <i>string</i>.</p>
  269.      */
  270.     /**
  271.      * @cfg {Boolean/Number} bufferResize
  272.      * When set to true (50 milliseconds) or a number of milliseconds, the layout assigned for this container will buffer
  273.      * the frequency it calculates and does a re-layout of components. This is useful for heavy containers or containers
  274.      * with a large quantity of sub-components for which frequent layout calls would be expensive. Defaults to <code>50</code>.
  275.      */
  276.     bufferResize: 50,
  277.     /**
  278.      * @cfg {String/Number} activeItem
  279.      * A string component id or the numeric index of the component that should be initially activated within the
  280.      * container's layout on render.  For example, activeItem: 'item-1' or activeItem: 0 (index 0 = the first
  281.      * item in the container's collection).  activeItem only applies to layout styles that can display
  282.      * items one at a time (like {@link Ext.layout.AccordionLayout}, {@link Ext.layout.CardLayout} and
  283.      * {@link Ext.layout.FitLayout}).  Related to {@link Ext.layout.ContainerLayout#activeItem}.
  284.      */
  285.     /**
  286.      * @cfg {Object/Array} items
  287.      * <pre><b>** IMPORTANT</b>: be sure to <b>{@link #layout specify a <code>layout</code>} if needed ! **</b></pre>
  288.      * <p>A single item, or an array of child Components to be added to this container,
  289.      * for example:</p>
  290.      * <pre><code>
  291. // specifying a single item
  292. items: {...},
  293. layout: 'fit',    // specify a layout!
  294. // specifying multiple items
  295. items: [{...}, {...}],
  296. layout: 'anchor', // specify a layout!
  297.      * </code></pre>
  298.      * <p>Each item may be:</p>
  299.      * <div><ul class="mdetail-params">
  300.      * <li>any type of object based on {@link Ext.Component}</li>
  301.      * <li>a fully instanciated object or</li>
  302.      * <li>an object literal that:</li>
  303.      * <div><ul class="mdetail-params">
  304.      * <li>has a specified <code>{@link Ext.Component#xtype xtype}</code></li>
  305.      * <li>the {@link Ext.Component#xtype} specified is associated with the Component
  306.      * desired and should be chosen from one of the available xtypes as listed
  307.      * in {@link Ext.Component}.</li>
  308.      * <li>If an <code>{@link Ext.Component#xtype xtype}</code> is not explicitly
  309.      * specified, the {@link #defaultType} for that Container is used.</li>
  310.      * <li>will be "lazily instanciated", avoiding the overhead of constructing a fully
  311.      * instanciated Component object</li>
  312.      * </ul></div></ul></div>
  313.      * <p><b>Notes</b>:</p>
  314.      * <div><ul class="mdetail-params">
  315.      * <li>Ext uses lazy rendering. Child Components will only be rendered
  316.      * should it become necessary. Items are automatically laid out when they are first
  317.      * shown (no sizing is done while hidden), or in response to a {@link #doLayout} call.</li>
  318.      * <li>Do not specify <code>{@link Ext.Panel#contentEl contentEl}</code>/
  319.      * <code>{@link Ext.Panel#html html}</code> with <code>items</code>.</li>
  320.      * </ul></div>
  321.      */
  322.     /**
  323.      * @cfg {Object|Function} defaults
  324.      * <p>This option is a means of applying default settings to all added items whether added through the {@link #items}
  325.      * config or via the {@link #add} or {@link #insert} methods.</p>
  326.      * <p>If an added item is a config object, and <b>not</b> an instantiated Component, then the default properties are
  327.      * unconditionally applied. If the added item <b>is</b> an instantiated Component, then the default properties are
  328.      * applied conditionally so as not to override existing properties in the item.</p>
  329.      * <p>If the defaults option is specified as a function, then the function will be called using this Container as the
  330.      * scope (<code>this</code> reference) and passing the added item as the first parameter. Any resulting object
  331.      * from that call is then applied to the item as default properties.</p>
  332.      * <p>For example, to automatically apply padding to the body of each of a set of
  333.      * contained {@link Ext.Panel} items, you could pass: <code>defaults: {bodyStyle:'padding:15px'}</code>.</p>
  334.      * <p>Usage:</p><pre><code>
  335. defaults: {               // defaults are applied to items, not the container
  336.     autoScroll:true
  337. },
  338. items: [
  339.     {
  340.         xtype: 'panel',   // defaults <b>do not</b> have precedence over
  341.         id: 'panel1',     // options in config objects, so the defaults
  342.         autoScroll: false // will not be applied here, panel1 will be autoScroll:false
  343.     },
  344.     new Ext.Panel({       // defaults <b>do</b> have precedence over options
  345.         id: 'panel2',     // options in components, so the defaults
  346.         autoScroll: false // will be applied here, panel2 will be autoScroll:true.
  347.     })
  348. ]
  349.      * </code></pre>
  350.      */
  351.     /** @cfg {Boolean} autoDestroy
  352.      * If true the container will automatically destroy any contained component that is removed from it, else
  353.      * destruction must be handled manually (defaults to true).
  354.      */
  355.     autoDestroy : true,
  356.     /** @cfg {Boolean} forceLayout
  357.      * If true the container will force a layout initially even if hidden or collapsed. This option
  358.      * is useful for forcing forms to render in collapsed or hidden containers. (defaults to false).
  359.      */
  360.     forceLayout: false,
  361.     /** @cfg {Boolean} hideBorders
  362.      * True to hide the borders of each contained component, false to defer to the component's existing
  363.      * border settings (defaults to false).
  364.      */
  365.     /** @cfg {String} defaultType
  366.      * <p>The default {@link Ext.Component xtype} of child Components to create in this Container when
  367.      * a child item is specified as a raw configuration object, rather than as an instantiated Component.</p>
  368.      * <p>Defaults to <code>'panel'</code>, except {@link Ext.menu.Menu} which defaults to <code>'menuitem'</code>,
  369.      * and {@link Ext.Toolbar} and {@link Ext.ButtonGroup} which default to <code>'button'</code>.</p>
  370.      */
  371.     defaultType : 'panel',
  372.     /** @cfg {String} resizeEvent
  373.      * The event to listen to for resizing in layouts. Defaults to <code>'resize'</code>.
  374.      */
  375.     resizeEvent: 'resize',
  376.     /**
  377.      * @cfg {Array} bubbleEvents
  378.      * <p>An array of events that, when fired, should be bubbled to any parent container.
  379.      * See {@link Ext.util.Observable#enableBubble}.
  380.      * Defaults to <code>['add', 'remove']</code>.
  381.      */
  382.     bubbleEvents: ['add', 'remove'],
  383.     // private
  384.     initComponent : function(){
  385.         Ext.Container.superclass.initComponent.call(this);
  386.         this.addEvents(
  387.             /**
  388.              * @event afterlayout
  389.              * Fires when the components in this container are arranged by the associated layout manager.
  390.              * @param {Ext.Container} this
  391.              * @param {ContainerLayout} layout The ContainerLayout implementation for this container
  392.              */
  393.             'afterlayout',
  394.             /**
  395.              * @event beforeadd
  396.              * Fires before any {@link Ext.Component} is added or inserted into the container.
  397.              * A handler can return false to cancel the add.
  398.              * @param {Ext.Container} this
  399.              * @param {Ext.Component} component The component being added
  400.              * @param {Number} index The index at which the component will be added to the container's items collection
  401.              */
  402.             'beforeadd',
  403.             /**
  404.              * @event beforeremove
  405.              * Fires before any {@link Ext.Component} is removed from the container.  A handler can return
  406.              * false to cancel the remove.
  407.              * @param {Ext.Container} this
  408.              * @param {Ext.Component} component The component being removed
  409.              */
  410.             'beforeremove',
  411.             /**
  412.              * @event add
  413.              * @bubbles
  414.              * Fires after any {@link Ext.Component} is added or inserted into the container.
  415.              * @param {Ext.Container} this
  416.              * @param {Ext.Component} component The component that was added
  417.              * @param {Number} index The index at which the component was added to the container's items collection
  418.              */
  419.             'add',
  420.             /**
  421.              * @event remove
  422.              * @bubbles
  423.              * Fires after any {@link Ext.Component} is removed from the container.
  424.              * @param {Ext.Container} this
  425.              * @param {Ext.Component} component The component that was removed
  426.              */
  427.             'remove'
  428.         );
  429.         this.enableBubble(this.bubbleEvents);
  430.         /**
  431.          * The collection of components in this container as a {@link Ext.util.MixedCollection}
  432.          * @type MixedCollection
  433.          * @property items
  434.          */
  435.         var items = this.items;
  436.         if(items){
  437.             delete this.items;
  438.             this.add(items);
  439.         }
  440.     },
  441.     // private
  442.     initItems : function(){
  443.         if(!this.items){
  444.             this.items = new Ext.util.MixedCollection(false, this.getComponentId);
  445.             this.getLayout(); // initialize the layout
  446.         }
  447.     },
  448.     // private
  449.     setLayout : function(layout){
  450.         if(this.layout && this.layout != layout){
  451.             this.layout.setContainer(null);
  452.         }
  453.         this.initItems();
  454.         this.layout = layout;
  455.         layout.setContainer(this);
  456.     },
  457.     afterRender: function(){
  458.         this.layoutDone = false;
  459.         if(!this.layout){
  460.             this.layout = 'auto';
  461.         }
  462.         if(Ext.isObject(this.layout) && !this.layout.layout){
  463.             this.layoutConfig = this.layout;
  464.             this.layout = this.layoutConfig.type;
  465.         }
  466.         if(Ext.isString(this.layout)){
  467.             this.layout = new Ext.Container.LAYOUTS[this.layout.toLowerCase()](this.layoutConfig);
  468.         }
  469.         this.setLayout(this.layout);
  470.         // BoxComponent's afterRender will set the size.
  471.         // This will will trigger a layout if the layout is configured to monitor resize
  472.         Ext.Container.superclass.afterRender.call(this);
  473.         if(Ext.isDefined(this.activeItem)){
  474.             var item = this.activeItem;
  475.             delete this.activeItem;
  476.             this.layout.setActiveItem(item);
  477.         }
  478.         // If we have no ownerCt and the BoxComponent's sizing did not trigger a layout, force a layout
  479.         if(!this.ownerCt && !this.layoutDone){
  480.             this.doLayout(false, true);
  481.         }
  482.         if(this.monitorResize === true){
  483.             Ext.EventManager.onWindowResize(this.doLayout, this, [false]);
  484.         }
  485.     },
  486.     /**
  487.      * <p>Returns the Element to be used to contain the child Components of this Container.</p>
  488.      * <p>An implementation is provided which returns the Container's {@link #getEl Element}, but
  489.      * if there is a more complex structure to a Container, this may be overridden to return
  490.      * the element into which the {@link #layout layout} renders child Components.</p>
  491.      * @return {Ext.Element} The Element to render child Components into.
  492.      */
  493.     getLayoutTarget : function(){
  494.         return this.el;
  495.     },
  496.     // private - used as the key lookup function for the items collection
  497.     getComponentId : function(comp){
  498.         return comp.getItemId();
  499.     },
  500.     /**
  501.      * <p>Adds {@link Ext.Component Component}(s) to this Container.</p>
  502.      * <br><p><b>Description</b></u> :
  503.      * <div><ul class="mdetail-params">
  504.      * <li>Fires the {@link #beforeadd} event before adding</li>
  505.      * <li>The Container's {@link #defaults default config values} will be applied
  506.      * accordingly (see <code>{@link #defaults}</code> for details).</li>
  507.      * <li>Fires the {@link #add} event after the component has been added.</li>
  508.      * </ul></div>
  509.      * <br><p><b>Notes</b></u> :
  510.      * <div><ul class="mdetail-params">
  511.      * <li>If the Container is <i>already rendered</i> when <code>add</code>
  512.      * is called, you may need to call {@link #doLayout} to refresh the view which causes
  513.      * any unrendered child Components to be rendered. This is required so that you can
  514.      * <code>add</code> multiple child components if needed while only refreshing the layout
  515.      * once. For example:<pre><code>
  516. var tb = new {@link Ext.Toolbar}();
  517. tb.render(document.body);  // toolbar is rendered
  518. tb.add({text:'Button 1'}); // add multiple items ({@link #defaultType} for {@link Ext.Toolbar Toolbar} is 'button')
  519. tb.add({text:'Button 2'});
  520. tb.{@link #doLayout}();             // refresh the layout
  521.      * </code></pre></li>
  522.      * <li><i>Warning:</i> Containers directly managed by the BorderLayout layout manager
  523.      * may not be removed or added.  See the Notes for {@link Ext.layout.BorderLayout BorderLayout}
  524.      * for more details.</li>
  525.      * </ul></div>
  526.      * @param {Object/Array} component
  527.      * <p>Either a single component or an Array of components to add.  See
  528.      * <code>{@link #items}</code> for additional information.</p>
  529.      * @param {Object} (Optional) component_2
  530.      * @param {Object} (Optional) component_n
  531.      * @return {Ext.Component} component The Component (or config object) that was added.
  532.      */
  533.     add : function(comp){
  534.         this.initItems();
  535.         var args = arguments.length > 1;
  536.         if(args || Ext.isArray(comp)){
  537.             var result = [];
  538.             Ext.each(args ? arguments : comp, function(c){
  539.                 result.push(this.add(c));
  540.             }, this);
  541.             return result;
  542.         }
  543.         var c = this.lookupComponent(this.applyDefaults(comp));
  544.         var index = this.items.length;
  545.         if(this.fireEvent('beforeadd', this, c, index) !== false && this.onBeforeAdd(c) !== false){
  546.             this.items.add(c);
  547.             // *onAdded
  548.             c.onAdded(this, index);
  549.             this.onAdd(c);
  550.             this.fireEvent('add', this, c, index);
  551.         }
  552.         return c;
  553.     },
  554.     onAdd : function(c){
  555.         // Empty template method
  556.     },
  557.     
  558.     // private
  559.     onAdded : function(container, pos) {
  560.         //overridden here so we can cascade down, not worth creating a template method.
  561.         this.ownerCt = container;
  562.         this.initRef();
  563.         //initialize references for child items
  564.         this.cascade(function(c){
  565.             c.initRef();
  566.         });
  567.         this.fireEvent('added', this, container, pos);
  568.     },
  569.     /**
  570.      * Inserts a Component into this Container at a specified index. Fires the
  571.      * {@link #beforeadd} event before inserting, then fires the {@link #add} event after the
  572.      * Component has been inserted.
  573.      * @param {Number} index The index at which the Component will be inserted
  574.      * into the Container's items collection
  575.      * @param {Ext.Component} component The child Component to insert.<br><br>
  576.      * Ext uses lazy rendering, and will only render the inserted Component should
  577.      * it become necessary.<br><br>
  578.      * A Component config object may be passed in order to avoid the overhead of
  579.      * constructing a real Component object if lazy rendering might mean that the
  580.      * inserted Component will not be rendered immediately. To take advantage of
  581.      * this 'lazy instantiation', set the {@link Ext.Component#xtype} config
  582.      * property to the registered type of the Component wanted.<br><br>
  583.      * For a list of all available xtypes, see {@link Ext.Component}.
  584.      * @return {Ext.Component} component The Component (or config object) that was
  585.      * inserted with the Container's default config values applied.
  586.      */
  587.     insert : function(index, comp){
  588.         this.initItems();
  589.         var a = arguments, len = a.length;
  590.         if(len > 2){
  591.             var result = [];
  592.             for(var i = len-1; i >= 1; --i) {
  593.                 result.push(this.insert(index, a[i]));
  594.             }
  595.             return result;
  596.         }
  597.         var c = this.lookupComponent(this.applyDefaults(comp));
  598.         index = Math.min(index, this.items.length);
  599.         if(this.fireEvent('beforeadd', this, c, index) !== false && this.onBeforeAdd(c) !== false){
  600.             if(c.ownerCt == this){
  601.                 this.items.remove(c);
  602.             }
  603.             this.items.insert(index, c);
  604.             c.onAdded(this, index);
  605.             this.onAdd(c);
  606.             this.fireEvent('add', this, c, index);
  607.         }
  608.         return c;
  609.     },
  610.     // private
  611.     applyDefaults : function(c){
  612.         var d = this.defaults;
  613.         if(d){
  614.             if(Ext.isFunction(d)){
  615.                 d = d.call(this, c);
  616.             }
  617.             if(Ext.isString(c)){
  618.                 c = Ext.ComponentMgr.get(c);
  619.                 Ext.apply(c, d);
  620.             }else if(!c.events){
  621.                 Ext.applyIf(c, d);
  622.             }else{
  623.                 Ext.apply(c, d);
  624.             }
  625.         }
  626.         return c;
  627.     },
  628.     // private
  629.     onBeforeAdd : function(item){
  630.         if(item.ownerCt){
  631.             item.ownerCt.remove(item, false);
  632.         }
  633.         if(this.hideBorders === true){
  634.             item.border = (item.border === true);
  635.         }
  636.     },
  637.     /**
  638.      * Removes a component from this container.  Fires the {@link #beforeremove} event before removing, then fires
  639.      * the {@link #remove} event after the component has been removed.
  640.      * @param {Component/String} component The component reference or id to remove.
  641.      * @param {Boolean} autoDestroy (optional) True to automatically invoke the removed Component's {@link Ext.Component#destroy} function.
  642.      * Defaults to the value of this Container's {@link #autoDestroy} config.
  643.      * @return {Ext.Component} component The Component that was removed.
  644.      */
  645.     remove : function(comp, autoDestroy){
  646.         this.initItems();
  647.         var c = this.getComponent(comp);
  648.         if(c && this.fireEvent('beforeremove', this, c) !== false){
  649.             this.doRemove(c, autoDestroy);
  650.             this.fireEvent('remove', this, c);
  651.         }
  652.         return c;
  653.     },
  654.     onRemove: function(c){
  655.         // Empty template method
  656.     },
  657.     // private
  658.     doRemove: function(c, autoDestroy){
  659.         if(this.layout && this.rendered){
  660.             this.layout.onRemove(c);
  661.         }
  662.         this.items.remove(c);
  663.         c.onRemoved();
  664.         this.onRemove(c);
  665.         if(autoDestroy === true || (autoDestroy !== false && this.autoDestroy)){
  666.             c.destroy();
  667.         }
  668.     },
  669.     /**
  670.      * Removes all components from this container.
  671.      * @param {Boolean} autoDestroy (optional) True to automatically invoke the removed Component's {@link Ext.Component#destroy} function.
  672.      * Defaults to the value of this Container's {@link #autoDestroy} config.
  673.      * @return {Array} Array of the destroyed components
  674.      */
  675.     removeAll: function(autoDestroy){
  676.         this.initItems();
  677.         var item, rem = [], items = [];
  678.         this.items.each(function(i){
  679.             rem.push(i);
  680.         });
  681.         for (var i = 0, len = rem.length; i < len; ++i){
  682.             item = rem[i];
  683.             this.remove(item, autoDestroy);
  684.             if(item.ownerCt !== this){
  685.                 items.push(item);
  686.             }
  687.         }
  688.         return items;
  689.     },
  690.     /**
  691.      * Examines this container's <code>{@link #items}</code> <b>property</b>
  692.      * and gets a direct child component of this container.
  693.      * @param {String/Number} comp This parameter may be any of the following:
  694.      * <div><ul class="mdetail-params">
  695.      * <li>a <b><code>String</code></b> : representing the <code>{@link Ext.Component#itemId itemId}</code>
  696.      * or <code>{@link Ext.Component#id id}</code> of the child component </li>
  697.      * <li>a <b><code>Number</code></b> : representing the position of the child component
  698.      * within the <code>{@link #items}</code> <b>property</b></li>
  699.      * </ul></div>
  700.      * <p>For additional information see {@link Ext.util.MixedCollection#get}.
  701.      * @return Ext.Component The component (if found).
  702.      */
  703.     getComponent : function(comp){
  704.         if(Ext.isObject(comp)){
  705.             comp = comp.getItemId();
  706.         }
  707.         return this.items.get(comp);
  708.     },
  709.     // private
  710.     lookupComponent : function(comp){
  711.         if(Ext.isString(comp)){
  712.             return Ext.ComponentMgr.get(comp);
  713.         }else if(!comp.events){
  714.             return this.createComponent(comp);
  715.         }
  716.         return comp;
  717.     },
  718.     // private
  719.     createComponent : function(config, defaultType){
  720.         // add in ownerCt at creation time but then immediately
  721.         // remove so that onBeforeAdd can handle it
  722.         var c = config.render ? config : Ext.create(Ext.apply({
  723.             ownerCt: this
  724.         }, config), defaultType || this.defaultType);
  725.         delete c.ownerCt;
  726.         return c;
  727.     },
  728.     /**
  729.     * We can only lay out if there is a view area in which to layout.
  730.     * display:none on the layout target, *or any of its parent elements* will mean it has no view area.
  731.     */
  732.     canLayout: function() {
  733.         var el = this.getLayoutTarget(), vs;
  734.         return !!(el && (vs = el.dom.offsetWidth || el.dom.offsetHeight));
  735.     },
  736.     /**
  737.      * Force this container's layout to be recalculated. A call to this function is required after adding a new component
  738.      * to an already rendered container, or possibly after changing sizing/position properties of child components.
  739.      * @param {Boolean} shallow (optional) True to only calc the layout of this component, and let child components auto
  740.      * calc layouts as required (defaults to false, which calls doLayout recursively for each subcontainer)
  741.      * @param {Boolean} force (optional) True to force a layout to occur, even if the item is hidden.
  742.      * @return {Ext.Container} this
  743.      */
  744.     doLayout: function(shallow, force){
  745.         var rendered = this.rendered,
  746.             forceLayout = force || this.forceLayout,
  747.             cs, i, len, c;
  748.         this.layoutDone = true;
  749.         if(!this.canLayout() || this.collapsed){
  750.             this.deferLayout = this.deferLayout || !shallow;
  751.             if(!forceLayout){
  752.                 return;
  753.             }
  754.             shallow = shallow && !this.deferLayout;
  755.         } else {
  756.             delete this.deferLayout;
  757.         }
  758.         cs = (shallow !== true && this.items) ? this.items.items : [];
  759. //      Inhibit child Containers from relaying on resize since we are about to to explicitly call doLayout on them all!
  760.         for(i = 0, len = cs.length; i < len; i++){
  761.             if ((c = cs[i]).layout) {
  762.                 c.suspendLayoutResize = true;
  763.             }
  764.         }
  765. //      Tell the layout manager to ensure all child items are rendered, and sized according to their rules.
  766. //      Will not cause the child items to relayout.
  767.         if(rendered && this.layout){
  768.             this.layout.layout();
  769.         }
  770. //      Explicitly lay out all child items
  771.         for(i = 0; i < len; i++){
  772.             if((c = cs[i]).doLayout){
  773.                 c.doLayout(false, forceLayout);
  774.             }
  775.         }
  776.         if(rendered){
  777.             this.onLayout(shallow, forceLayout);
  778.         }
  779.         // Initial layout completed
  780.         this.hasLayout = true;
  781.         delete this.forceLayout;
  782. //      Re-enable child layouts relaying on resize.
  783.         for(i = 0; i < len; i++){
  784.             if ((c = cs[i]).layout) {
  785.                 delete c.suspendLayoutResize;
  786.             }
  787.         }
  788.     },
  789.     //private
  790.     onLayout : Ext.emptyFn,
  791.     onResize: function(adjWidth, adjHeight, rawWidth, rawHeight){
  792.         Ext.Container.superclass.onResize.apply(this, arguments);
  793.         if ((this.rendered && this.layout && this.layout.monitorResize) && !this.suspendLayoutResize) {
  794.             this.layout.onResize();
  795.         }
  796.     },
  797.     // private
  798.     hasLayoutPending: function(){
  799.         // Traverse hierarchy to see if any parent container has a pending layout.
  800.         var pending = this.layoutPending;
  801.         this.ownerCt.bubble(function(c){
  802.             return !(pending = c.layoutPending);
  803.         });
  804.         return pending;
  805.     },
  806.     onShow : function(){
  807.         Ext.Container.superclass.onShow.call(this);
  808.         if(Ext.isDefined(this.deferLayout)){
  809.             this.doLayout(true);
  810.         }
  811.     },
  812.     /**
  813.      * Returns the layout currently in use by the container.  If the container does not currently have a layout
  814.      * set, a default {@link Ext.layout.ContainerLayout} will be created and set as the container's layout.
  815.      * @return {ContainerLayout} layout The container's layout
  816.      */
  817.     getLayout : function(){
  818.         if(!this.layout){
  819.             var layout = new Ext.layout.ContainerLayout(this.layoutConfig);
  820.             this.setLayout(layout);
  821.         }
  822.         return this.layout;
  823.     },
  824.     // private
  825.     beforeDestroy : function(){
  826.         var c;
  827.         if(this.items){
  828.             while(c = this.items.first()){
  829.                 this.doRemove(c, true);
  830.             }
  831.         }
  832.         if(this.monitorResize){
  833.             Ext.EventManager.removeResizeListener(this.doLayout, this);
  834.         }
  835.         Ext.destroy(this.layout);
  836.         Ext.Container.superclass.beforeDestroy.call(this);
  837.     },
  838.     /**
  839.      * Bubbles up the component/container heirarchy, calling the specified function with each component. The scope (<i>this</i>) of
  840.      * function call will be the scope provided or the current component. The arguments to the function
  841.      * will be the args provided or the current component. If the function returns false at any point,
  842.      * the bubble is stopped.
  843.      * @param {Function} fn The function to call
  844.      * @param {Object} scope (optional) The scope of the function (defaults to current node)
  845.      * @param {Array} args (optional) The args to call the function with (default to passing the current component)
  846.      * @return {Ext.Container} this
  847.      */
  848.     bubble : function(fn, scope, args){
  849.         var p = this;
  850.         while(p){
  851.             if(fn.apply(scope || p, args || [p]) === false){
  852.                 break;
  853.             }
  854.             p = p.ownerCt;
  855.         }
  856.         return this;
  857.     },
  858.     /**
  859.      * Cascades down the component/container heirarchy from this component (called first), calling the specified function with
  860.      * each component. The scope (<i>this</i>) of
  861.      * function call will be the scope provided or the current component. The arguments to the function
  862.      * will be the args provided or the current component. If the function returns false at any point,
  863.      * the cascade is stopped on that branch.
  864.      * @param {Function} fn The function to call
  865.      * @param {Object} scope (optional) The scope of the function (defaults to current component)
  866.      * @param {Array} args (optional) The args to call the function with (defaults to passing the current component)
  867.      * @return {Ext.Container} this
  868.      */
  869.     cascade : function(fn, scope, args){
  870.         if(fn.apply(scope || this, args || [this]) !== false){
  871.             if(this.items){
  872.                 var cs = this.items.items;
  873.                 for(var i = 0, len = cs.length; i < len; i++){
  874.                     if(cs[i].cascade){
  875.                         cs[i].cascade(fn, scope, args);
  876.                     }else{
  877.                         fn.apply(scope || cs[i], args || [cs[i]]);
  878.                     }
  879.                 }
  880.             }
  881.         }
  882.         return this;
  883.     },
  884.     /**
  885.      * Find a component under this container at any level by id
  886.      * @param {String} id
  887.      * @return Ext.Component
  888.      */
  889.     findById : function(id){
  890.         var m, ct = this;
  891.         this.cascade(function(c){
  892.             if(ct != c && c.id === id){
  893.                 m = c;
  894.                 return false;
  895.             }
  896.         });
  897.         return m || null;
  898.     },
  899.     /**
  900.      * Find a component under this container at any level by xtype or class
  901.      * @param {String/Class} xtype The xtype string for a component, or the class of the component directly
  902.      * @param {Boolean} shallow (optional) False to check whether this Component is descended from the xtype (this is
  903.      * the default), or true to check whether this Component is directly of the specified xtype.
  904.      * @return {Array} Array of Ext.Components
  905.      */
  906.     findByType : function(xtype, shallow){
  907.         return this.findBy(function(c){
  908.             return c.isXType(xtype, shallow);
  909.         });
  910.     },
  911.     /**
  912.      * Find a component under this container at any level by property
  913.      * @param {String} prop
  914.      * @param {String} value
  915.      * @return {Array} Array of Ext.Components
  916.      */
  917.     find : function(prop, value){
  918.         return this.findBy(function(c){
  919.             return c[prop] === value;
  920.         });
  921.     },
  922.     /**
  923.      * Find a component under this container at any level by a custom function. If the passed function returns
  924.      * true, the component will be included in the results. The passed function is called with the arguments (component, this container).
  925.      * @param {Function} fn The function to call
  926.      * @param {Object} scope (optional)
  927.      * @return {Array} Array of Ext.Components
  928.      */
  929.     findBy : function(fn, scope){
  930.         var m = [], ct = this;
  931.         this.cascade(function(c){
  932.             if(ct != c && fn.call(scope || c, c, ct) === true){
  933.                 m.push(c);
  934.             }
  935.         });
  936.         return m;
  937.     },
  938.     /**
  939.      * Get a component contained by this container (alias for items.get(key))
  940.      * @param {String/Number} key The index or id of the component
  941.      * @return {Ext.Component} Ext.Component
  942.      */
  943.     get : function(key){
  944.         return this.items.get(key);
  945.     }
  946. });
  947. Ext.Container.LAYOUTS = {};
  948. Ext.reg('container', Ext.Container);