Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.Toolbar({
      renderTo: Ext.getBody(),
      items: [
                {
            xtype: 'tbbutton',
            text: 'Menu Button',
            menu: [
                {
                  text: 'Better'
                },
                {
                  text: 'Good'
                },
                {
                  text: 'Best'
                }
            ]
          }
      ]
    });
});
 
asdf