I'm having issues adding a titlebar to my list.
The code below (with items commented out) works - the list is displayed. When I uncomment the other lines, I see the titlebar but no list. I'm sure there's an easy solution to this. Please help and thanks!
Code:
Ext.define("MyApp.view.Main", {
extend: 'Ext.tab.Panel',
requires: ['Ext.TitleBar', 'Ext.Video'],
config: {
tabBarPosition: 'bottom',
items: [
{
title: 'Get Started',
iconCls: 'action',
//items: [
/*{
docked: 'top',
xtype: 'titlebar',
title: 'Getting Started'
},*/
//{
xtype: 'templist'
//}
//]
}
]
}
});