Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    
    var myCallback = function(btn, text) {
        alert('You pressed '  + btn);
        if (text) {
            alert('You entered : ' + text)
        }
    }
    
    
    Ext.Msg.show({
       title      : 'Hold on there cowboy!',
       msg        : 'Are you sure you want to reboot the internet?',
       width      : 300,
       buttons    : Ext.MessageBox.YESNOCANCEL,
       fn         : myCallback,
       icon       : Ext.MessageBox.ERROR
    })
});
 
asdf