Upgrade to ExtJS 3.0.3 - Released 10/11/2009
[extjs.git] / src / widgets / layout / AccordionLayout.js
1 /*!
2  * Ext JS Library 3.0.3
3  * Copyright(c) 2006-2009 Ext JS, LLC
4  * licensing@extjs.com
5  * http://www.extjs.com/license
6  */
7 /**\r
8  * @class Ext.layout.AccordionLayout\r
9  * @extends Ext.layout.FitLayout\r
10  * <p>This is a layout that manages multiple Panels in an expandable accordion style such that only\r
11  * <b>one Panel can be expanded at any given time</b>. Each Panel has built-in support for expanding and collapsing.</p>\r
12  * <p>Note: Only Ext.Panels <b>and all subclasses of Ext.Panel</b> may be used in an accordion layout Container.</p>\r
13  * <p>This class is intended to be extended or created via the <tt><b>{@link Ext.Container#layout layout}</b></tt>\r
14  * configuration property.  See <tt><b>{@link Ext.Container#layout}</b></tt> for additional details.</p>\r
15  * <p>Example usage:</p>\r
16  * <pre><code>\r
17 var accordion = new Ext.Panel({\r
18     title: 'Accordion Layout',\r
19     layout:'accordion',\r
20     defaults: {\r
21         // applied to each contained panel\r
22         bodyStyle: 'padding:15px'\r
23     },\r
24     layoutConfig: {\r
25         // layout-specific configs go here\r
26         titleCollapse: false,\r
27         animate: true,\r
28         activeOnTop: true\r
29     },\r
30     items: [{\r
31         title: 'Panel 1',\r
32         html: '&lt;p&gt;Panel content!&lt;/p&gt;'\r
33     },{\r
34         title: 'Panel 2',\r
35         html: '&lt;p&gt;Panel content!&lt;/p&gt;'\r
36     },{\r
37         title: 'Panel 3',\r
38         html: '&lt;p&gt;Panel content!&lt;/p&gt;'\r
39     }]\r
40 });\r
41 </code></pre>\r
42  */\r
43 Ext.layout.AccordionLayout = Ext.extend(Ext.layout.FitLayout, {\r
44     /**\r
45      * @cfg {Boolean} fill\r
46      * True to adjust the active item's height to fill the available space in the container, false to use the\r
47      * item's current height, or auto height if not explicitly set (defaults to true).\r
48      */\r
49     fill : true,\r
50     /**\r
51      * @cfg {Boolean} autoWidth\r
52      * True to set each contained item's width to 'auto', false to use the item's current width (defaults to true).\r
53      * Note that some components, in particular the {@link Ext.grid.GridPanel grid}, will not function properly within\r
54      * layouts if they have auto width, so in such cases this config should be set to false.\r
55      */\r
56     autoWidth : true,\r
57     /**\r
58      * @cfg {Boolean} titleCollapse\r
59      * True to allow expand/collapse of each contained panel by clicking anywhere on the title bar, false to allow\r
60      * expand/collapse only when the toggle tool button is clicked (defaults to true).  When set to false,\r
61      * {@link #hideCollapseTool} should be false also.\r
62      */\r
63     titleCollapse : true,\r
64     /**\r
65      * @cfg {Boolean} hideCollapseTool\r
66      * True to hide the contained panels' collapse/expand toggle buttons, false to display them (defaults to false).\r
67      * When set to true, {@link #titleCollapse} should be true also.\r
68      */\r
69     hideCollapseTool : false,\r
70     /**\r
71      * @cfg {Boolean} collapseFirst\r
72      * True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools\r
73      * in the contained panels' title bars, false to render it last (defaults to false).\r
74      */\r
75     collapseFirst : false,\r
76     /**\r
77      * @cfg {Boolean} animate\r
78      * True to slide the contained panels open and closed during expand/collapse using animation, false to open and\r
79      * close directly with no animation (defaults to false).  Note: to defer to the specific config setting of each\r
80      * contained panel for this property, set this to undefined at the layout level.\r
81      */\r
82     animate : false,\r
83     /**\r
84      * @cfg {Boolean} sequence\r
85      * <b>Experimental</b>. If animate is set to true, this will result in each animation running in sequence.\r
86      */\r
87     sequence : false,\r
88     /**\r
89      * @cfg {Boolean} activeOnTop\r
90      * True to swap the position of each panel as it is expanded so that it becomes the first item in the container,\r
91      * false to keep the panels in the rendered order. <b>This is NOT compatible with "animate:true"</b> (defaults to false).\r
92      */\r
93     activeOnTop : false,\r
94 \r
95     renderItem : function(c){\r
96         if(this.animate === false){\r
97             c.animCollapse = false;\r
98         }\r
99         c.collapsible = true;\r
100         if(this.autoWidth){\r
101             c.autoWidth = true;\r
102         }\r
103         if(this.titleCollapse){\r
104             c.titleCollapse = true;\r
105         }\r
106         if(this.hideCollapseTool){\r
107             c.hideCollapseTool = true;\r
108         }\r
109         if(this.collapseFirst !== undefined){\r
110             c.collapseFirst = this.collapseFirst;\r
111         }\r
112         if(!this.activeItem && !c.collapsed){\r
113             this.activeItem = c;\r
114         }else if(this.activeItem && this.activeItem != c){\r
115             c.collapsed = true;\r
116         }\r
117         Ext.layout.AccordionLayout.superclass.renderItem.apply(this, arguments);\r
118         c.header.addClass('x-accordion-hd');\r
119         c.on('beforeexpand', this.beforeExpand, this);\r
120     },\r
121     \r
122     onRemove: function(c){\r
123         Ext.layout.AccordionLayout.superclass.onRemove.call(this, c);\r
124         if(c.rendered){\r
125             c.header.removeClass('x-accordion-hd');\r
126         }\r
127         c.un('beforeexpand', this.beforeExpand, this);\r
128     },\r
129 \r
130     // private\r
131     beforeExpand : function(p, anim){\r
132         var ai = this.activeItem;\r
133         if(ai){\r
134             if(this.sequence){\r
135                 delete this.activeItem;\r
136                 if (!ai.collapsed){\r
137                     ai.collapse({callback:function(){\r
138                         p.expand(anim || true);\r
139                     }, scope: this});\r
140                     return false;\r
141                 }\r
142             }else{\r
143                 ai.collapse(this.animate);\r
144             }\r
145         }\r
146         this.activeItem = p;\r
147         if(this.activeOnTop){\r
148             p.el.dom.parentNode.insertBefore(p.el.dom, p.el.dom.parentNode.firstChild);\r
149         }\r
150         this.layout();\r
151     },\r
152 \r
153     // private\r
154     setItemSize : function(item, size){\r
155         if(this.fill && item){\r
156             var hh = 0;\r
157             this.container.items.each(function(p){\r
158                 if(p != item){\r
159                     hh += p.header.getHeight();\r
160                 }    \r
161             });\r
162             size.height -= hh;\r
163             item.setSize(size);\r
164         }\r
165     },\r
166 \r
167     /**\r
168      * Sets the active (expanded) item in the layout.\r
169      * @param {String/Number} item The string component id or numeric index of the item to activate\r
170      */\r
171     setActiveItem : function(item){\r
172         item = this.container.getComponent(item);\r
173         if(this.activeItem != item){\r
174             if(item.rendered && item.collapsed){\r
175                 item.expand();\r
176             }else{\r
177                 this.activeItem = item;\r
178             }\r
179         }\r
180 \r
181     }\r
182 });\r
183 Ext.Container.LAYOUTS.accordion = Ext.layout.AccordionLayout;\r
184 \r
185 //backwards compat\r
186 Ext.layout.Accordion = Ext.layout.AccordionLayout;