3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
4 <title>The source code</title>
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
8 <body onload="prettyPrint();">
9 <pre class="prettyprint lang-js">/*!
10 * Ext JS Library 3.3.1
11 * Copyright(c) 2006-2010 Sencha Inc.
12 * licensing@sencha.com
13 * http://www.sencha.com/license
15 <div id="cls-Ext.layout.AutoLayout"></div>/**
16 * @class Ext.layout.AutoLayout
17 * <p>The AutoLayout is the default layout manager delegated by {@link Ext.Container} to
18 * render any child Components when no <tt>{@link Ext.Container#layout layout}</tt> is configured into
19 * a {@link Ext.Container Container}.</tt>. AutoLayout provides only a passthrough of any layout calls
20 * to any child containers.</p>
22 Ext.layout.AutoLayout = Ext.extend(Ext.layout.ContainerLayout, {
27 onLayout : function(ct, target){
28 Ext.layout.AutoLayout.superclass.onLayout.call(this, ct, target);
29 var cs = this.getRenderedItems(ct), len = cs.length, i, c;
30 for(i = 0; i < len; i++){
33 // Shallow layout children
40 Ext.Container.LAYOUTS['auto'] = Ext.layout.AutoLayout;