X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/examples/window/hello.js diff --git a/examples/window/hello.js b/examples/window/hello.js index 0f392069..7e96ea00 100644 --- a/examples/window/hello.js +++ b/examples/window/hello.js @@ -1,44 +1,43 @@ -/* - * Ext JS Library 2.2.1 - * Copyright(c) 2006-2009, Ext JS, LLC. - * licensing@extjs.com - * - * http://extjs.com/license - */ - -Ext.onReady(function(){ - var win; - var button = Ext.get('show-btn'); - - button.on('click', 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 - }), - - buttons: [{ - text : 'Submit', - disabled : true - },{ - text : 'Close', - handler : function(){ - win.hide(); - } - }] - }); - } - win.show(button); - }); +/*! + * Ext JS Library 3.3.1 + * Copyright(c) 2006-2010 Sencha Inc. + * licensing@sencha.com + * http://www.sencha.com/license + */ +Ext.onReady(function(){ + var win; + var button = Ext.get('show-btn'); + + button.on('click', 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 + }), + + buttons: [{ + text:'Submit', + disabled:true + },{ + text: 'Close', + handler: function(){ + win.hide(); + } + }] + }); + } + win.show(this); + }); }); \ No newline at end of file