Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var win = new Ext.Window({
        height      : 305,
        width       : 200,
        modal       : true,
        title       : 'Rigid window',
        html        : 'Unable to move or resize.',
        plain       : true,
        border      : false,
        resizable   : false,
        draggable   : false,
        closable    : false,
        buttonAlign : 'center',
        buttons     : [
            {
                text    : 'OK',
                handler : function() {
                    win.close();
                }
            }
        ]
    })
    win.show();
});
 
asdf