Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  
    var w = new Ext.Window({
      height: 500,
      width: 500
    });
    w.show('animTarget', function() { alert('alert'); }, this);
});