Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var myWin = new Ext.Window({
      height     : 200,
      width      : 200,
      layout     : 'fit',
      autoScroll : true,
      border     : false,
      items      : [
        {
          title : 'Panel1',
          html   : 'I fit in my parent!',
          frame  : true
        }
      ]
    });
    
    myWin.show();
});
 
asdf