Upgrade to ExtJS 4.0.0 - Released 04/26/2011
[extjs.git] / examples / window / hello.js
diff --git a/examples/window/hello.js b/examples/window/hello.js
deleted file mode 100644 (file)
index 7e96ea0..0000000
+++ /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