how to add one more button (refresh button) in the same Ext.TabPanel. Mi code is here:
Ext.define('myApp.view.Twitter',{
extend: 'Ext.TabPanel',
xtype: 'twitter',
config: {
title:'Twitter',
iconCls: 'twitter2',
styleHtmlContent: true,
items: [
{
title: 'Twitts',
html: 'Lista de twitts'
},
{
title: 'Mapa',
html: 'Lugar de twitts'
}
]
}
});
Solution: