Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    
    var doSwitch = function(btn) {
    
        btn.disable();
    }
    
    var myWin = new Ext.Window({
        x       : 100,
        height  : 200,
        width   : 300,
        layout  : 'fit',
        title   : 'myWin2',
        buttons : [
            {
                text    : 'OK',
                handler : doSwitch
            }
        ]
    });
    
    myWin.show();
        
});
 
asdf