Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.Toolbar({
      renderTo: Ext.getBody(),
      items: 
      [
          {
            xtype: 'tbspacer'
          },
          {
            text: 'Button'
          },'->',
    
          {
            text: 'Button'
          },
          {
            xtype: 'tbseparator'
          },{
            text: 'Button'
          },{
            xtype: 'tbspacer'
          }
        ]
    });
});
 
asdf