Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var win;
    var newWindow = function(btn) {
        if (! win) {
            win = new Ext.Window({
                 title    : "title",
                animateTarget : btn.el,
                html          : 'My first Window',
                closeAction   : 'hide',
                id            : 'myWin',
                height        : 200,
                width         : 300,
                constrain     : true
            });
        }
        win.show();
    }
    new Ext.Button({
        renderTo : Ext.getBody(),
        text     : 'Open my Window',
        style    : 'margin: 100px',
        handler  : newWindow
    });
});
 
asdf