I'm trying to create a TabPanel that has a text header just beside the tabs. That is, instead of
|Tab1|Tab2|Tab3|Tab4|, I want Text Here |Tab1|Tab2|Tab3|Tab4|
The text shouldn't be selectable as a tab, so how do I do this?
Currently, my TabPanel is this:
new Ext.TabPanel({
id: 'lift-template',
defaults: {
items:[
{
xtype: 'list',
store: myStore,
itemCls: 'my-row',
itemTpl: '<p><span class="blah">{variable}</span></p>'
}
]
},
items: [
{title:'Week'},
{title: '1'},
{title: '2'},
{title: '3'},
{title: '4'}
]
});
How do I add an item that isn't a true tab, or at least disable activation?