X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/examples/window/hello.js diff --git a/examples/window/hello.js b/examples/window/hello.js deleted file mode 100644 index 7e96ea00..00000000 --- a/examples/window/hello.js +++ /dev/null @@ -1,43 +0,0 @@ -/*! - * 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