Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.Toolbar({
      renderTo: Ext.getBody(),
      items: [
                {
            xtype: 'tbsplit',
            text: 'Split Button',
            menu: [
                {
                  text: 'Item One'
                },
                {
                  text: 'Item Two'
                },
                {
                  text: 'Item Three'
                }
              ]
            }
    ]});
});
 
asdf