X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/layout.html diff --git a/docs/source/layout.html b/docs/source/layout.html deleted file mode 100644 index 5df2b3ea..00000000 --- a/docs/source/layout.html +++ /dev/null @@ -1,64 +0,0 @@ - - - The source code - - - - -
Ext.onReady(function(){
-    
-    Ext.state.Manager.setProvider(
-            new Ext.state.SessionProvider({state: Ext.appState}));
-
-    var button = Ext.get('show-btn');
-
-    button.on('click', function(){
-
-        // tabs for the center
-        var tabs = new Ext.TabPanel({
-            region: 'center',
-            margins:'3 3 3 0', 
-            activeTab: 0,
-            defaults:{autoScroll:true},
-
-            items:[{
-                title: 'Bogus Tab',
-                html: Ext.example.bogusMarkup
-            },{
-                title: 'Another Tab',
-                html: Ext.example.bogusMarkup
-            },{
-                title: 'Closable Tab',
-                html: Ext.example.bogusMarkup,
-                closable:true
-            }]
-        });
-
-        // Panel for the west
-        var nav = new Ext.Panel({
-            title: 'Navigation',
-            region: 'west',
-            split: true,
-            width: 200,
-            collapsible: true,
-            margins:'3 0 3 3',
-            cmargins:'3 3 3 3'
-        });
-
-        var win = new Ext.Window({
-            title: 'Layout Window',
-            closable:true,
-            width:600,
-            height:350,
-            //border:false,
-            plain:true,
-            layout: 'border',
-
-            items: [nav, tabs]
-        });
-
-        win.show(this);
-    });
-});
- - \ No newline at end of file