X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/ee06f37b0f6f6d94cd05a6ffae556660f7c4a2bc..c930e9176a5a85509c5b0230e2bff5c22a591432:/examples/window/hello.js diff --git a/examples/window/hello.js b/examples/window/hello.js index 0f392069..8395e8eb 100644 --- a/examples/window/hello.js +++ b/examples/window/hello.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(){ var win; var button = Ext.get('show-btn'); @@ -14,31 +12,32 @@ Ext.onReady(function(){ // create the window on the first click and reuse on subsequent clicks if(!win){ win = new Ext.Window({ - applyTo : 'hello-win', - layout : 'fit', - width : 500, - height : 300, - closeAction :'hide', - plain : true, - items : new Ext.TabPanel({ - applyTo : 'hello-tabs', - autoTabs : true, - activeTab : 0, - deferredRender : false, - border : false + applyTo:'hello-win', + layout:'fit', + width:500, + height:300, + closeAction:'hide', + plain: true, + + items: new Ext.TabPanel({ + applyTo: 'hello-tabs', + autoTabs:true, + activeTab:0, + deferredRender:false, + border:false }), buttons: [{ - text : 'Submit', - disabled : true + text:'Submit', + disabled:true },{ - text : 'Close', - handler : function(){ + text: 'Close', + handler: function(){ win.hide(); } }] }); } - win.show(button); + win.show(this); }); }); \ No newline at end of file