Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    var myWin =  new Ext.Window({
      height      : 220,
      width       : 230,
      bodyStyle   : 'padding: 5px',
      layout      : 'form',
      labelWidth  : 50,
      defaultType : 'field',
      items       : [
        {
          fieldLabel : 'Name',
          width      : 110
        },
        {
          xtype          : 'panel',
          fieldLabel     : 'Field',
          labelSeparator : 'asdf',
          frame          : true,
          title          : 'Instructions',
          html           : 'Please fill in the form',
          height         : 55
        }
        ]
    });
    
    myWin.show();
});
 
asdf