Ext JS JavaScript DHTML



Hello World Window





Ext.onReady(function(){
  
      var w = new Ext.Window({
      height:50,
      width: 100,
      closable: false,
      draggable: false,
      resizable: false
    });
    w.show();
});