X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/examples/window/layout.js diff --git a/examples/window/layout.js b/examples/window/layout.js index 27518408..96b96fea 100644 --- a/examples/window/layout.js +++ b/examples/window/layout.js @@ -1,11 +1,9 @@ -/* - * Ext JS Library 2.2.1 - * Copyright(c) 2006-2009, Ext JS, LLC. - * licensing@extjs.com - * - * http://extjs.com/license - */ - +/*! + * Ext JS Library 3.0.0 + * Copyright(c) 2006-2009 Ext JS, LLC + * licensing@extjs.com + * http://www.extjs.com/license + */ Ext.onReady(function(){ Ext.state.Manager.setProvider( @@ -17,47 +15,47 @@ Ext.onReady(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 + 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' - }); + 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] + title: 'Layout Window', + closable:true, + width:600, + height:350, + //border:false, + plain:true, + layout: 'border', + + items: [nav, tabs] }); - win.show(button); + win.show(this); }); }); \ No newline at end of file