+\r
+ <div id="vbox-details">\r
+ <h2>Ext.layout.VBoxLayout</h2>\r
+ <p>A layout that allows for the vertical and horizontal stretching of child items, much like the container\r
+ layout with size management.</p>\r
+ <p><b>Sample Config:</b></p>\r
+ <pre><code>\r
+layout:'vbox',\r
+layoutConfig: {\r
+ align : 'stretch',\r
+ pack : 'start',\r
+},\r
+items: [\r
+ {html:'panel 1', flex:1},\r
+ {html:'panel 2', height:150},\r
+ {html:'panel 3', flex:2}\r
+]\r
+ </code></pre>\r
+ <p><a href="http://extjs.com/deploy/dev/docs/?class=Ext.layout.VBoxLayout" target="_blank">API Reference</a></p>\r
+ </div>\r
+\r
+ <div id="hbox-details">\r
+ <h2>Ext.layout.HBoxLayout</h2>\r
+ <p>A layout that allows for the vertical and horizontal stretching of child items, much like the column\r
+ layout but can stretch items vertically.</p>\r
+ <p><b>Sample Config:</b></p>\r
+ <pre><code>\r
+layout:'hbox',\r
+layoutConfig: {\r
+ align : 'stretch',\r
+ pack : 'start',\r
+},\r
+items: [\r
+ {html:'panel 1', flex:1},\r
+ {html:'panel 2', width:150},\r
+ {html:'panel 3', flex:2}\r
+]\r
+ </code></pre>\r
+ <p><a href="http://extjs.com/deploy/dev/docs/?class=Ext.layout.HBoxLayout" target="_blank">API Reference</a></p>\r
+ </div>\r
+\r
+\r