X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/Accordion.html diff --git a/docs/source/Accordion.html b/docs/source/Accordion.html index 2b43997d..61cebadd 100644 --- a/docs/source/Accordion.html +++ b/docs/source/Accordion.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.layout.container.Accordion
  * @extends Ext.layout.container.VBox
  * <p>This is a layout that manages multiple Panels in an expandable accordion style such that only
@@ -43,19 +60,19 @@ Ext.define('Ext.layout.container.Accordion', {
     
     align: 'stretch',
 
-    /**
+    /**
      * @cfg {Boolean} fill
      * True to adjust the active item's height to fill the available space in the container, false to use the
      * item's current height, or auto height if not explicitly set (defaults to true).
      */
     fill : true,
-    /**
+    /**
      * @cfg {Boolean} autoWidth
      * <p><b>This config is ignored in ExtJS 4.x.</b></p>
      * Child Panels have their width actively managed to fit within the accordion's width.
      */
     autoWidth : true,
-    /**
+    /**
      * @cfg {Boolean} titleCollapse
      * <p><b>Not implemented in PR2.</b></p>
      * True to allow expand/collapse of each contained panel by clicking anywhere on the title bar, false to allow
@@ -63,26 +80,26 @@ Ext.define('Ext.layout.container.Accordion', {
      * {@link #hideCollapseTool} should be false also.
      */
     titleCollapse : true,
-    /**
+    /**
      * @cfg {Boolean} hideCollapseTool
      * True to hide the contained Panels' collapse/expand toggle buttons, false to display them (defaults to false).
      * When set to true, {@link #titleCollapse} is automatically set to <code>true</code>.
      */
     hideCollapseTool : false,
-    /**
+    /**
      * @cfg {Boolean} collapseFirst
      * True to make sure the collapse/expand toggle button always renders first (to the left of) any other tools
      * in the contained Panels' title bars, false to render it last (defaults to false).
      */
     collapseFirst : false,
-    /**
+    /**
      * @cfg {Boolean} animate
      * True to slide the contained panels open and closed during expand/collapse using animation, false to open and
      * close directly with no animation (defaults to <code>true</code>). Note: The layout performs animated collapsing
      * and expanding, <i>not</i> the child Panels.
      */
     animate : true,
-    /**
+    /**
      * @cfg {Boolean} activeOnTop
      * <p><b>Not implemented in PR4.</b></p>
      * <p>Only valid when {@link #multi" is <code>false</code>.</p>
@@ -90,7 +107,7 @@ Ext.define('Ext.layout.container.Accordion', {
      * false to keep the panels in the rendered order. <b>This is NOT compatible with "animate:true"</b> (defaults to false).
      */
     activeOnTop : false,
-    /**
+    /**
      * @cfg {Boolean} multi
      * Defaults to <code>false</code>. Set to <code>true</code> to enable multiple accordion items to be open at once.
      */
@@ -362,7 +379,7 @@ Ext.define('Ext.layout.container.Accordion', {
 
         // Show temporarily hidden docked items
         for (; i < len; i++) {
-            otherDocks[i].hidden = false;
+            otherDocks[i].show();
         }
 
         // If it was an initial native collapse which hides the body
@@ -382,4 +399,6 @@ Ext.define('Ext.layout.container.Accordion', {
         }
         comp.setAutoScroll(comp.initialConfig.autoScroll);
     }
-});
\ No newline at end of file +});
+ +