Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
new Ext.Window({
  width        : 300,
  height       : 300,
  title        : 'Accordion window',
  layout       : 'accordion',
  border       : false,
  layoutConfig : {
    animate : true
  },
  items : [
    {
      xtype  : 'form',
      title  : 'Form Panel',
      defaults : {
        width : 150
      },
      items  : [
        {
          xtype      : 'textfield',
          fieldLabel : 'Name'
        },
        {
          xtype      : 'checkbox',
          fieldLabel : 'CheckBox'
        },
        {
          xtype      : 'combo',
          fieldLabel : 'Type',
          store      : [ 'A', 'B', 'C' ]
        }
      ]
    },
    {
      xtype  : 'form',
      title  : 'Form Panel',
      defaults : {
        width : 150
      },
      items  : [
        {
          xtype      : 'textfield',
          fieldLabel : 'Name'
        },
        {
          xtype      : 'checkbox',
          fieldLabel : 'CheckBox'
        },
        {
          xtype      : 'combo',
          fieldLabel : 'Type',
          store      : [ 'A', 'B', 'C' ]
        }
      ]
    },
    {
      xtype  : 'form',
      title  : 'Form Panel',
      defaults : {
        width : 150
      },
      items  : [
        {
          xtype      : 'textfield',
          fieldLabel : 'Name'
        },
        {
          xtype      : 'checkbox',
          fieldLabel : 'CheckBox'
        },
        {
          xtype      : 'combo',
          fieldLabel : 'Type',
          store      : [ 'A', 'B', 'C' ]
        }
      ]
    },
  ]
}).show();
});
 
asdf