Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    Ext.MessageBox.show({
       title        : 'Wait',                              
       msg          : "Deleting...",
       progressText : 'Initializing...',
       width        : 300,
       progress     : true,                                                 
       closable     : false
    });
    
    
    var updateFn = function(num){                                           
       return function(){
          if(num == 99){
             Ext.MessageBox.updateProgress(100, 'All Items deleted!');       
             Ext.MessageBox.hide.defer(1500, Ext.MessageBox);             
          }         
          else{     
             var i = num/100; 
             var pct = i;
             Ext.MessageBox.updateProgress(i, pct + '% completed');       
          }         
      };    
    };
    
    for (var i = 1; i < 100; i++){                                         
       setTimeout(updateFn(i), i * 50+1);
    }
});
 
asdf