X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/window/hello.js diff --git a/examples/window/hello.js b/examples/window/hello.js deleted file mode 100644 index 0f392069..00000000 --- a/examples/window/hello.js +++ /dev/null @@ -1,44 +0,0 @@ -/* - * 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); - }); -}); \ No newline at end of file