3 <title>The source code</title>
4 <link href="../resources/prettify/prettify.css" type="text/css" rel="stylesheet" />
5 <script type="text/javascript" src="../resources/prettify/prettify.js"></script>
7 <body onload="prettyPrint();">
8 <pre class="prettyprint lang-js">/*!
10 * Copyright(c) 2006-2009 Ext JS, LLC
12 * http://www.extjs.com/license
14 <div id="cls-Ext.layout.CardLayout"></div>/**
\r
15 * @class Ext.layout.CardLayout
\r
16 * @extends Ext.layout.FitLayout
\r
17 * <p>This layout manages multiple child Components, each fitted to the Container, where only a single child Component can be
\r
18 * visible at any given time. This layout style is most commonly used for wizards, tab implementations, etc.
\r
19 * This class is intended to be extended or created via the layout:'card' {@link Ext.Container#layout} config,
\r
20 * and should generally not need to be created directly via the new keyword.</p>
\r
21 * <p>The CardLayout's focal method is {@link #setActiveItem}. Since only one panel is displayed at a time,
\r
22 * the only way to move from one Component to the next is by calling setActiveItem, passing the id or index of
\r
23 * the next panel to display. The layout itself does not provide a user interface for handling this navigation,
\r
24 * so that functionality must be provided by the developer.</p>
\r
25 * <p>In the following example, a simplistic wizard setup is demonstrated. A button bar is added
\r
26 * to the footer of the containing panel to provide navigation buttons. The buttons will be handled by a
\r
27 * common navigation routine -- for this example, the implementation of that routine has been ommitted since
\r
28 * it can be any type of custom logic. Note that other uses of a CardLayout (like a tab control) would require a
\r
29 * completely different implementation. For serious implementations, a better approach would be to extend
\r
30 * CardLayout to provide the custom functionality needed. Example usage:</p>
\r
32 var navHandler = function(direction){
\r
33 // This routine could contain business logic required to manage the navigation steps.
\r
34 // It would call setActiveItem as needed, manage navigation button state, handle any
\r
35 // branching logic that might be required, handle alternate actions like cancellation
\r
36 // or finalization, etc. A complete wizard implementation could get pretty
\r
37 // sophisticated depending on the complexity required, and should probably be
\r
38 // done as a subclass of CardLayout in a real-world implementation.
\r
41 var card = new Ext.Panel({
\r
42 title: 'Example Wizard',
\r
44 activeItem: 0, // make sure the active item is set on the container config!
\r
45 bodyStyle: 'padding:15px',
\r
47 // applied to each contained panel
\r
50 // just an example of one possible navigation scheme, using buttons
\r
55 handler: navHandler.createDelegate(this, [-1]),
\r
58 '->', // greedy spacer so that the buttons are aligned to each side
\r
62 handler: navHandler.createDelegate(this, [1])
\r
65 // the panels (or "cards") within the layout
\r
68 html: '<h1>Welcome to the Wizard!</h1><p>Step 1 of 3</p>'
\r
71 html: '<p>Step 2 of 3</p>'
\r
74 html: '<h1>Congratulations!</h1><p>Step 3 of 3 - Complete</p>'
\r
79 Ext.layout.CardLayout = Ext.extend(Ext.layout.FitLayout, {
\r
80 <div id="cfg-Ext.layout.CardLayout-deferredRender"></div>/**
\r
81 * @cfg {Boolean} deferredRender
\r
82 * True to render each contained item at the time it becomes active, false to render all contained items
\r
83 * as soon as the layout is rendered (defaults to false). If there is a significant amount of content or
\r
84 * a lot of heavy controls being rendered into panels that are not displayed by default, setting this to
\r
85 * true might improve performance.
\r
87 deferredRender : false,
\r
89 <div id="cfg-Ext.layout.CardLayout-layoutOnCardChange"></div>/**
\r
90 * @cfg {Boolean} layoutOnCardChange
\r
91 * True to force a layout of the active item when the active card is changed. Defaults to false.
\r
93 layoutOnCardChange : false,
\r
95 <div id="cfg-Ext.layout.CardLayout-renderHidden"></div>/**
\r
96 * @cfg {Boolean} renderHidden @hide
\r
99 renderHidden : true,
\r
101 constructor: function(config){
\r
102 Ext.layout.CardLayout.superclass.constructor.call(this, config);
\r
103 this.forceLayout = (this.deferredRender === false);
\r
106 <div id="method-Ext.layout.CardLayout-setActiveItem"></div>/**
\r
107 * Sets the active (visible) item in the layout.
\r
108 * @param {String/Number} item The string component id or numeric index of the item to activate
\r
110 setActiveItem : function(item){
\r
111 item = this.container.getComponent(item);
\r
112 if(this.activeItem != item){
\r
113 if(this.activeItem){
\r
114 this.activeItem.hide();
\r
116 var layout = item.doLayout && (this.layoutOnCardChange || !item.rendered);
\r
117 this.activeItem = item;
\r
127 renderAll : function(ct, target){
\r
128 if(this.deferredRender){
\r
129 this.renderItem(this.activeItem, undefined, target);
\r
131 Ext.layout.CardLayout.superclass.renderAll.call(this, ct, target);
\r
135 Ext.Container.LAYOUTS['card'] = Ext.layout.CardLayout;</pre>