Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
  var panel = new Ext.Window({
    title    : 'Static Panel',
    width    : 400,
    height   : 600,
    frame    : true,
    html     : 'This is a static panel' 
  });
  panel.show()
});