X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/docs/output/Ext.layout.CardLayout.html diff --git a/docs/output/Ext.layout.CardLayout.html b/docs/output/Ext.layout.CardLayout.html index ec77dc81..74ae7a0c 100644 --- a/docs/output/Ext.layout.CardLayout.html +++ b/docs/output/Ext.layout.CardLayout.html @@ -1,31 +1,12 @@ -
-
- Properties - Methods - Events - Config Options - Direct Link -
-
-
ContainerLayout
-  FitLayout
-    CardLayout
-

Class Ext.layout.CardLayout

- - - - - -
Package:Ext.layout
Defined In:CardLayout.js
Class:CardLayout
Extends:FitLayout
-
- * -

This layout contains multiple panels, each fit to the container, where only a single panel can be +

ContainerLayout
+  FitLayout
+    CardLayout

Class Ext.layout.CardLayout

Package:Ext.layout
Defined In:CardLayout.js
Class:CardLayout
Extends:FitLayout

This layout manages multiple child Components, each fitted to the Container, where only a single child Component can be visible at any given time. This layout style is most commonly used for wizards, tab implementations, etc. -This class is intended to be extended or created via the layout:'card' Ext.Container.layout config, +This class is intended to be extended or created via the layout:'card' Ext.Container.layout config, and should generally not need to be created directly via the new keyword.

-

The CardLayout's focal method is setActiveItem. Since only one panel is displayed at a time, -the only way to move from one panel to the next is by calling setActiveItem, passing the id or index of -the next panel to display. The layout itself does not provide a mechanism for handling this navigation, +

The CardLayout's focal method is setActiveItem. Since only one panel is displayed at a time, +the only way to move from one Component to the next is by calling setActiveItem, passing the id or index of +the next panel to display. The layout itself does not provide a user interface for handling this navigation, so that functionality must be provided by the developer.

In the following example, a simplistic wizard setup is demonstrated. A button bar is added to the footer of the containing panel to provide navigation buttons. The buttons will be handled by a @@ -33,7 +14,7 @@ common navigation routine -- for this example, the implementation of that routin it can be any type of custom logic. Note that other uses of a CardLayout (like a tab control) would require a completely different implementation. For serious implementations, a better approach would be to extend CardLayout to provide the custom functionality needed. Example usage:

-
var navHandler = function(direction){
+
var navHandler = function(direction){
     // This routine could contain business logic required to manage the navigation steps.
     // It would call setActiveItem as needed, manage navigation button state, handle any
     // branching logic that might be required, handle alternate actions like cancellation
@@ -56,14 +37,14 @@ CardLayout to provide the custom functionality needed.  Example usage:

{ id: 'move-prev', text: 'Back', - handler: navHandler.createDelegate(this, [-1]), + handler: navHandler.createDelegate(this, [-1]), disabled: true }, '->', // greedy spacer so that the buttons are aligned to each side { id: 'move-next', text: 'Next', - handler: navHandler.createDelegate(this, [1]) + handler: navHandler.createDelegate(this, [1]) } ], // the panels (or "cards") within the layout @@ -77,105 +58,40 @@ CardLayout to provide the custom functionality needed. Example usage:

id: 'card-2', html: '<h1>Congratulations!</h1><p>Step 3 of 3 - Complete</p>' }] -});
- -
- -

Config Options

- - - - - - - - - - - - - - - - - - - - -
Config OptionsDefined By
  - - renderHidden : Boolean
- True to hide each contained item on render (defaults to false).
-
ContainerLayout
- -

Public Properties

- - - - - - - - - - -
PropertyDefined By
- -

Public Methods

- - - - - - - - - - -
MethodDefined By
- -

Public Events

-
This class has no public events.
-
\ No newline at end of file +});

Config Options

Config OptionsDefined By
 layoutOnCardChange : Boolean
True to force a layout of the active item when the active card is changed. Defaults to false.
CardLayout

Public Properties

PropertyDefined By

Public Methods

MethodDefined By

Public Events

This class has no public events.
\ No newline at end of file