X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/2e847cf21b8ab9d15fa167b315ca5b2fa92638fc..6a7e4474cba9d8be4b2ec445e10f1691f7277c50:/examples/window/layout.js diff --git a/examples/window/layout.js b/examples/window/layout.js index b302a3d2..75d07e2e 100644 --- a/examples/window/layout.js +++ b/examples/window/layout.js @@ -1,61 +1,61 @@ /*! - * Ext JS Library 3.1.1 - * Copyright(c) 2006-2010 Ext JS, LLC + * Ext JS Library 3.2.0 + * Copyright(c) 2006-2010 Ext JS, Inc. * licensing@extjs.com * http://www.extjs.com/license */ -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); - }); +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