Ext JS JavaScript DHTML



Hello World Window






Ext.onReady(function() {
    new Ext.Toolbar({
      renderTo: Ext.getBody(),
      items: 
      [
          {
                  xtype: 'tbbutton',
            cls: 'x-btn-icon',
            icon: 'http://www.rntsoft.com/style/logo.png'
          },
          {
            text: 'Button'
          },'->',
    
          {
            text: 'Button'
          },
          {
            xtype: 'tbseparator'
          },{
            text: 'Button'
          },{
            xtype: 'tbspacer'
          }
        ]
    });
});
 
asdf