X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/src/layout/container/Accordion.js diff --git a/src/layout/container/Accordion.js b/src/layout/container/Accordion.js index cabc1b9b..ada861d6 100644 --- a/src/layout/container/Accordion.js +++ b/src/layout/container/Accordion.js @@ -7,33 +7,33 @@ * {@img Ext.layout.container.Accordion/Ext.layout.container.Accordion.png Ext.layout.container.Accordion container layout} *

Example usage:

*

-    Ext.create('Ext.panel.Panel', {
-        title: 'Accordion Layout',
-        width: 300,
-        height: 300,
-        layout:'accordion',
-        defaults: {
-            // applied to each contained panel
-            bodyStyle: 'padding:15px'
-        },
-        layoutConfig: {
-            // layout-specific configs go here
-            titleCollapse: false,
-            animate: true,
-            activeOnTop: true
-        },
-        items: [{
-            title: 'Panel 1',
-            html: '

Panel content!

' - },{ - title: 'Panel 2', - html: '

Panel content!

' - },{ - title: 'Panel 3', - html: '

Panel content!

' - }], - renderTo: Ext.getBody() - }); +Ext.create('Ext.panel.Panel', { + title: 'Accordion Layout', + width: 300, + height: 300, + layout:'accordion', + defaults: { + // applied to each contained panel + bodyStyle: 'padding:15px' + }, + layoutConfig: { + // layout-specific configs go here + titleCollapse: false, + animate: true, + activeOnTop: true + }, + items: [{ + title: 'Panel 1', + html: 'Panel content!' + },{ + title: 'Panel 2', + html: 'Panel content!' + },{ + title: 'Panel 3', + html: 'Panel content!' + }], + renderTo: Ext.getBody() +});
*/ Ext.define('Ext.layout.container.Accordion', { @@ -362,7 +362,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