By the default list does not have titleBar, but when I create a list in such a way it has an empty titleBar
Ext.define('Application.view.RecipeList', {
extend: 'Ext.List',
xtype: 'recipelist',
requires: ['Application.store.Recipes'],
id:'list',
config: {
grouped: true,
itemTpl: '{title}',
store: 'Recipes',
onItemDisclosure: true
}
});
Can somebody help me to understand how to hide titleBar?
The empty bar is actually your navigation bar.
If you want to hide it you just need to set the
navigationBartofalsein yourmainpanelUpdate
Update
Here’s how to add the searchbar in your navigationbar
But then you need to hide it when you switch to the detail card, but I’ll let you figure out how to do that.