Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
var myWin = new Ext.Window({
  height       : 200,
  width        : 300,
  border       : false,
  title        : 'A Window with an accordion layout',
  layout       : 'accordion',
  layoutConfig : {
    animate : true
  },
  items : [
    {
      title : 'Instructions',
      html  : 'Please enter information.',
      tools : [
        {id : 'gear'}, {id:'help'}
      ]
    }
  ]
  
});
myWin.show();
});
 
asdf