/* This file is part of Ext JS 3.4 Copyright (c) 2011-2013 Sencha Inc Contact: http://www.sencha.com/contact GNU General Public License Usage This file may be used under the terms of the GNU General Public License version 3.0 as published by the Free Software Foundation and appearing in the file LICENSE included in the packaging of this file. Please review the following information to ensure the GNU General Public License version 3.0 requirements will be met: http://www.gnu.org/copyleft/gpl.html. If you are unsure which license is appropriate for your use, please contact the sales department at http://www.sencha.com/contact. Build date: 2013-04-03 15:07:25 */ Ext.data.JsonP.Ext_layout_CardLayout({"alternateClassNames":[],"aliases":{},"enum":null,"parentMixins":[],"tagname":"class","subclasses":[],"extends":"Ext.layout.FitLayout","uses":[],"html":"
Hierarchy
Ext.layout.ContainerLayoutExt.layout.FitLayoutExt.layout.CardLayoutFiles
This layout manages multiple child Components, each fitted to the Container, where only a single child Component can be\nvisible at any given time. This layout style is most commonly used for wizards, tab implementations, etc.\nThis class is intended to be extended or created via the layout:'card' Ext.Container.layout config,\nand should generally not need to be created directly via the new keyword.
\n\n\nThe CardLayout's focal method is setActiveItem. Since only one panel is displayed at a time,\nthe only way to move from one Component to the next is by calling setActiveItem, passing the id or index of\nthe next panel to display. The layout itself does not provide a user interface for handling this navigation,\nso that functionality must be provided by the developer.
\n\n\nIn the following example, a simplistic wizard setup is demonstrated. A button bar is added\nto the footer of the containing panel to provide navigation buttons. The buttons will be handled by a\ncommon navigation routine -- for this example, the implementation of that routine has been ommitted since\nit can be any type of custom logic. Note that other uses of a CardLayout (like a tab control) would require a\ncompletely different implementation. For serious implementations, a better approach would be to extend\nCardLayout to provide the custom functionality needed. Example usage:
\n\n\nvar navHandler = function(direction){\n // This routine could contain business logic required to manage the navigation steps.\n // It would call setActiveItem as needed, manage navigation button state, handle any\n // branching logic that might be required, handle alternate actions like cancellation\n // or finalization, etc. A complete wizard implementation could get pretty\n // sophisticated depending on the complexity required, and should probably be\n // done as a subclass of CardLayout in a real-world implementation.\n};\n\nvar card = new Ext.Panel({\n title: 'Example Wizard',\n layout:'card',\n activeItem: 0, // make sure the active item is set on the container config!\n bodyStyle: 'padding:15px',\n defaults: {\n // applied to each contained panel\n border:false\n },\n // just an example of one possible navigation scheme, using buttons\n bbar: [\n {\n id: 'move-prev',\n text: 'Back',\n handler: navHandler.createDelegate(this, [-1]),\n disabled: true\n },\n '->', // greedy spacer so that the buttons are aligned to each side\n {\n id: 'move-next',\n text: 'Next',\n handler: navHandler.createDelegate(this, [1])\n }\n ],\n // the panels (or \"cards\") within the layout\n items: [{\n id: 'card-0',\n html: '<h1>Welcome to the Wizard!</h1><p>Step 1 of 3</p>'\n },{\n id: 'card-1',\n html: '<p>Step 2 of 3</p>'\n },{\n id: 'card-2',\n html: '<h1>Congratulations!</h1><p>Step 3 of 3 - Complete</p>'\n }]\n});\n
\n\nTrue to render each contained item at the time it becomes active, false to render all contained items\nas soon as the layout is rendered (defaults to false). If there is a significant amount of content or\na lot of heavy controls being rendered into panels that are not displayed by default, setting this to\ntrue might improve performance.
\nDefaults to: false
An optional extra CSS class that will be added to the container. This can be useful for adding\ncustomized styles to the container or any of its children using standard CSS rules. See\nExt.Component.ctCls also.
\n\n\nNote: extraCls defaults to '' except for the following classes\nwhich assign a value by default:\n
extraCls: 'x-column custom-class'\n
\n\n\nTrue to force a layout of the active item when the active card is changed. Defaults to false.
\nDefaults to: false
private
\n\nTrue to hide each contained item on render (defaults to false).
\nDefaults to: true
Overrides: Ext.layout.ContainerLayout.renderHidden
The Ext.Template used by Field rendering layout classes (such as\nExt.layout.FormLayout) to create the DOM structure of a fully wrapped,\nlabeled and styled form Field. A default Template is supplied, but this may be\noverriden to create custom field structures. The template processes values returned from\nExt.layout.FormLayout.getTemplateArgs.
\nPlaceholder for the derived layouts
\nPlaceholder for the derived layouts
\nWorkaround for how IE measures autoWidth elements. It prefers bottom-up measurements
\n\n whereas other browser prefer top-down. We will hide all target child elements before we measure and\n put them back to get an accurate measurement.\n
\nApplies extraCls and hides the item if renderHidden is true
\nDestroys this layout. This is a template method that is empty by default, but should be implemented\nby subclasses that require explicit destruction to purge event handlers or remove DOM nodes.
\nprivate.\nGet all rendered items to lay out.
\nParses a number or string representing margin sizes into an object. Supports CSS-style margin declarations\n(e.g. 10, \"10\", \"10 10\", \"10 10 10\" and \"10 10 10 10\" are all valid options and would return the same result)
\nAn object with margin sizes for top, right, bottom and left
\nRenders the given Component into the target Element. If the Component is already rendered,\nit is moved to the provided target instead.
\nThe Component to render
\n\nThe position within the target to render the item to
\n\nThe target Element
\n\n