find the button and make it invisible Ext.create('Ext.toolbar.Toolbar', { renderTo: document.body, width : 400, items: [ { text: 'Button', id: 'my-btn', hidden: true }, { xtype: 'splitbutton', text : 'Split Button' }, '->', { xtype : 'textfield', name : 'field1', emptyText: 'enter search term' } ] });
source share