Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  
    var w = new Ext.Window({
      tbar: [{ text: 'A tbar item'}],
      bbar: [{ text: 'A bbar item'}],
      buttons: [{text: 'A button'}],
      width: 300,
      height: 200,
      html: '

test.

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