Upgrade to ExtJS 3.1.0 - Released 12/16/2009
[extjs.git] / docs / source / CardLayout.html
1 <html>\r
2 <head>\r
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
7 </head>\r
8 <body  onload="prettyPrint();">\r
9     <pre class="prettyprint lang-js"><div id="cls-Ext.layout.CardLayout"></div>/**\r
10  * @class Ext.layout.CardLayout\r
11  * @extends Ext.layout.FitLayout\r
12  * <p>This layout manages multiple child Components, each fitted to the Container, where only a single child Component can be\r
13  * visible at any given time.  This layout style is most commonly used for wizards, tab implementations, etc.\r
14  * This class is intended to be extended or created via the layout:'card' {@link Ext.Container#layout} config,\r
15  * and should generally not need to be created directly via the new keyword.</p>\r
16  * <p>The CardLayout's focal method is {@link #setActiveItem}.  Since only one panel is displayed at a time,\r
17  * the only way to move from one Component to the next is by calling setActiveItem, passing the id or index of\r
18  * the next panel to display.  The layout itself does not provide a user interface for handling this navigation,\r
19  * so that functionality must be provided by the developer.</p>\r
20  * <p>In the following example, a simplistic wizard setup is demonstrated.  A button bar is added\r
21  * to the footer of the containing panel to provide navigation buttons.  The buttons will be handled by a\r
22  * common navigation routine -- for this example, the implementation of that routine has been ommitted since\r
23  * it can be any type of custom logic.  Note that other uses of a CardLayout (like a tab control) would require a\r
24  * completely different implementation.  For serious implementations, a better approach would be to extend\r
25  * CardLayout to provide the custom functionality needed.  Example usage:</p>\r
26  * <pre><code>\r
27 var navHandler = function(direction){\r
28     // This routine could contain business logic required to manage the navigation steps.\r
29     // It would call setActiveItem as needed, manage navigation button state, handle any\r
30     // branching logic that might be required, handle alternate actions like cancellation\r
31     // or finalization, etc.  A complete wizard implementation could get pretty\r
32     // sophisticated depending on the complexity required, and should probably be\r
33     // done as a subclass of CardLayout in a real-world implementation.\r
34 };\r
35 \r
36 var card = new Ext.Panel({\r
37     title: 'Example Wizard',\r
38     layout:'card',\r
39     activeItem: 0, // make sure the active item is set on the container config!\r
40     bodyStyle: 'padding:15px',\r
41     defaults: {\r
42         // applied to each contained panel\r
43         border:false\r
44     },\r
45     // just an example of one possible navigation scheme, using buttons\r
46     bbar: [\r
47         {\r
48             id: 'move-prev',\r
49             text: 'Back',\r
50             handler: navHandler.createDelegate(this, [-1]),\r
51             disabled: true\r
52         },\r
53         '->', // greedy spacer so that the buttons are aligned to each side\r
54         {\r
55             id: 'move-next',\r
56             text: 'Next',\r
57             handler: navHandler.createDelegate(this, [1])\r
58         }\r
59     ],\r
60     // the panels (or "cards") within the layout\r
61     items: [{\r
62         id: 'card-0',\r
63         html: '&lt;h1&gt;Welcome to the Wizard!&lt;/h1&gt;&lt;p&gt;Step 1 of 3&lt;/p&gt;'\r
64     },{\r
65         id: 'card-1',\r
66         html: '&lt;p&gt;Step 2 of 3&lt;/p&gt;'\r
67     },{\r
68         id: 'card-2',\r
69         html: '&lt;h1&gt;Congratulations!&lt;/h1&gt;&lt;p&gt;Step 3 of 3 - Complete&lt;/p&gt;'\r
70     }]\r
71 });\r
72 </code></pre>\r
73  */\r
74 Ext.layout.CardLayout = Ext.extend(Ext.layout.FitLayout, {\r
75     <div id="cfg-Ext.layout.CardLayout-deferredRender"></div>/**\r
76      * @cfg {Boolean} deferredRender\r
77      * True to render each contained item at the time it becomes active, false to render all contained items\r
78      * as soon as the layout is rendered (defaults to false).  If there is a significant amount of content or\r
79      * a lot of heavy controls being rendered into panels that are not displayed by default, setting this to\r
80      * true might improve performance.\r
81      */\r
82     deferredRender : false,\r
83     \r
84     <div id="cfg-Ext.layout.CardLayout-layoutOnCardChange"></div>/**\r
85      * @cfg {Boolean} layoutOnCardChange\r
86      * True to force a layout of the active item when the active card is changed. Defaults to false.\r
87      */\r
88     layoutOnCardChange : false,\r
89 \r
90     <div id="cfg-Ext.layout.CardLayout-renderHidden"></div>/**\r
91      * @cfg {Boolean} renderHidden @hide\r
92      */\r
93     // private\r
94     renderHidden : true,\r
95     \r
96     constructor: function(config){\r
97         Ext.layout.CardLayout.superclass.constructor.call(this, config);\r
98       //  this.forceLayout = (this.deferredRender === false);\r
99     },\r
100 \r
101     <div id="method-Ext.layout.CardLayout-setActiveItem"></div>/**\r
102      * Sets the active (visible) item in the layout.\r
103      * @param {String/Number} item The string component id or numeric index of the item to activate\r
104      */\r
105     setActiveItem : function(item){\r
106         var ai = this.activeItem;\r
107         item = this.container.getComponent(item);\r
108         if(ai != item){\r
109             if(ai){\r
110                 ai.hide();\r
111                 ai.fireEvent('deactivate', ai);\r
112             }\r
113             var layout = item.doLayout && (this.layoutOnCardChange || !item.rendered);\r
114             this.activeItem = item;\r
115             if(item){\r
116                 item.show();\r
117             }\r
118             this.layout();\r
119             if(item && layout){\r
120                 item.doLayout();\r
121             }\r
122             item.fireEvent('activate', item);\r
123         }\r
124     },\r
125 \r
126     // private\r
127     renderAll : function(ct, target){\r
128         if(this.deferredRender){\r
129             this.renderItem(this.activeItem, undefined, target);\r
130         }else{\r
131             Ext.layout.CardLayout.superclass.renderAll.call(this, ct, target);\r
132         }\r
133     }\r
134 });\r
135 Ext.Container.LAYOUTS['card'] = Ext.layout.CardLayout;</pre>    \r
136 </body>\r
137 </html>