Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  
    var w = new Ext.Window({
        width: 100, 
        autoHeight: true,
      html: '

test test test.

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