3 <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
\r
4 <title>The source code</title>
\r
5 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
\r
6 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
\r
8 <body onload="prettyPrint();">
\r
9 <pre class="prettyprint lang-js"><div id="cls-Ext.layout.FitLayout"></div>/**
\r
10 * @class Ext.layout.FitLayout
\r
11 * @extends Ext.layout.ContainerLayout
\r
12 * <p>This is a base class for layouts that contain <b>a single item</b> that automatically expands to fill the layout's
\r
13 * container. This class is intended to be extended or created via the <tt>layout:'fit'</tt> {@link Ext.Container#layout}
\r
14 * config, and should generally not need to be created directly via the new keyword.</p>
\r
15 * <p>FitLayout does not have any direct config options (other than inherited ones). To fit a panel to a container
\r
16 * using FitLayout, simply set layout:'fit' on the container and add a single panel to it. If the container has
\r
17 * multiple panels, only the first one will be displayed. Example usage:</p>
\r
19 var p = new Ext.Panel({
\r
20 title: 'Fit Layout',
\r
23 title: 'Inner Panel',
\r
24 html: '<p>This is the inner panel content</p>',
\r
30 Ext.layout.FitLayout = Ext.extend(Ext.layout.ContainerLayout, {
\r
36 getLayoutTargetSize : function() {
\r
37 var target = this.container.getLayoutTarget();
\r
41 // Style Sized (scrollbars not included)
\r
42 return target.getStyleSize();
\r
46 onLayout : function(ct, target){
\r
47 Ext.layout.FitLayout.superclass.onLayout.call(this, ct, target);
\r
49 this.setItemSize(this.activeItem || ct.items.itemAt(0), this.getLayoutTargetSize());
\r
54 setItemSize : function(item, size){
\r
55 if(item && size.height > 0){ // display none?
\r
60 Ext.Container.LAYOUTS['fit'] = Ext.layout.FitLayout;</pre>
\r