Upgrade to ExtJS 3.1.1 - Released 02/08/2010
[extjs.git] / examples / ux / RowLayout.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 // We are adding these custom layouts to a namespace that does not
8 // exist by default in Ext, so we have to add the namespace first:
9 Ext.ns('Ext.ux.layout');
10
11 /**
12  * @class Ext.ux.layout.RowLayout
13  * @extends Ext.layout.ContainerLayout
14  * <p>This is the layout style of choice for creating structural layouts in a multi-row format where the height of
15  * each row can be specified as a percentage or fixed height.  Row widths can also be fixed, percentage or auto.
16  * This class is intended to be extended or created via the layout:'ux.row' {@link Ext.Container#layout} config,
17  * and should generally not need to be created directly via the new keyword.</p>
18  * <p>RowLayout does not have any direct config options (other than inherited ones), but it does support a
19  * specific config property of <b><tt>rowHeight</tt></b> that can be included in the config of any panel added to it.  The
20  * layout will use the rowHeight (if present) or height of each panel during layout to determine how to size each panel.
21  * If height or rowHeight is not specified for a given panel, its height will default to the panel's height (or auto).</p>
22  * <p>The height property is always evaluated as pixels, and must be a number greater than or equal to 1.
23  * The rowHeight property is always evaluated as a percentage, and must be a decimal value greater than 0 and
24  * less than 1 (e.g., .25).</p>
25  * <p>The basic rules for specifying row heights are pretty simple.  The logic makes two passes through the
26  * set of contained panels.  During the first layout pass, all panels that either have a fixed height or none
27  * specified (auto) are skipped, but their heights are subtracted from the overall container height.  During the second
28  * pass, all panels with rowHeights are assigned pixel heights in proportion to their percentages based on
29  * the total <b>remaining</b> container height.  In other words, percentage height panels are designed to fill the space
30  * left over by all the fixed-height and/or auto-height panels.  Because of this, while you can specify any number of rows
31  * with different percentages, the rowHeights must always add up to 1 (or 100%) when added together, otherwise your
32  * layout may not render as expected.  Example usage:</p>
33  * <pre><code>
34 // All rows are percentages -- they must add up to 1
35 var p = new Ext.Panel({
36     title: 'Row Layout - Percentage Only',
37     layout:'ux.row',
38     items: [{
39         title: 'Row 1',
40         rowHeight: .25
41     },{
42         title: 'Row 2',
43         rowHeight: .6
44     },{
45         title: 'Row 3',
46         rowHeight: .15
47     }]
48 });
49
50 // Mix of height and rowHeight -- all rowHeight values must add
51 // up to 1. The first row will take up exactly 120px, and the last two
52 // rows will fill the remaining container height.
53 var p = new Ext.Panel({
54     title: 'Row Layout - Mixed',
55     layout:'ux.row',
56     items: [{
57         title: 'Row 1',
58         height: 120,
59         // standard panel widths are still supported too:
60         width: '50%' // or 200
61     },{
62         title: 'Row 2',
63         rowHeight: .8,
64         width: 300
65     },{
66         title: 'Row 3',
67         rowHeight: .2
68     }]
69 });
70 </code></pre>
71  */
72 Ext.ux.layout.RowLayout = Ext.extend(Ext.layout.ContainerLayout, {
73     // private
74     monitorResize:true,
75
76     type: 'row',
77
78     // private
79     allowContainerRemove: false,
80
81     // private
82     isValidParent : function(c, target){
83         return this.innerCt && c.getPositionEl().dom.parentNode == this.innerCt.dom;
84     },
85
86     getLayoutTargetSize : function() {
87         var target = this.container.getLayoutTarget(), ret;
88         if (target) {
89             ret = target.getViewSize();
90             ret.width -= target.getPadding('lr');
91             ret.height -= target.getPadding('tb');
92         }
93         return ret;
94     },
95
96     renderAll : function(ct, target) {
97         if(!this.innerCt){
98             // the innerCt prevents wrapping and shuffling while
99             // the container is resizing
100             this.innerCt = target.createChild({cls:'x-column-inner'});
101             this.innerCt.createChild({cls:'x-clear'});
102         }
103         Ext.layout.ColumnLayout.superclass.renderAll.call(this, ct, this.innerCt);
104     },
105
106     // private
107     onLayout : function(ct, target){
108         var rs = ct.items.items, len = rs.length, r, i;
109
110         this.renderAll(ct, target);
111
112         var size = this.getLayoutTargetSize();
113
114         if(size.width < 1 && size.height < 1){ // display none?
115             return;
116         }
117
118         var h = size.height,
119             ph = h;
120
121         this.innerCt.setSize({height:h});
122
123         // some rows can be percentages while others are fixed
124         // so we need to make 2 passes
125
126         for(i = 0; i < len; i++){
127             r = rs[i];
128             if(!r.rowHeight){
129                 ph -= (r.getHeight() + r.getEl().getMargins('tb'));
130             }
131         }
132
133         ph = ph < 0 ? 0 : ph;
134
135         for(i = 0; i < len; i++){
136             r = rs[i];
137             if(r.rowHeight){
138                 r.setSize({height: Math.floor(r.rowHeight*ph) - r.getEl().getMargins('tb')});
139             }
140         }
141
142         // Browsers differ as to when they account for scrollbars.  We need to re-measure to see if the scrollbar
143         // spaces were accounted for properly.  If not, re-layout.
144         if (Ext.isIE) {
145             if (i = target.getStyle('overflow') && i != 'hidden' && !this.adjustmentPass) {
146                 var ts = this.getLayoutTargetSize();
147                 if (ts.width != size.width){
148                     this.adjustmentPass = true;
149                     this.layoutTargetSize = ts;
150                     this.onLayout(ct, target);
151                 }
152             }
153         }
154         delete this.adjustmentPass;
155     }
156
157     /**
158      * @property activeItem
159      * @hide
160      */
161 });
162
163 Ext.Container.LAYOUTS['ux.row'] = Ext.ux.layout.RowLayout;