Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  
    var w = new Ext.Window({
      height: 150, 
      width: 200,
      title: 'A Window',
      html: '

Oh

'
    });
    w.show();
});