X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/hello.html diff --git a/docs/source/hello.html b/docs/source/hello.html deleted file mode 100644 index bb24757d..00000000 --- a/docs/source/hello.html +++ /dev/null @@ -1,46 +0,0 @@ - - - The source code - - - - -
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