通過默認列表中沒有標題欄的,但是當我以這樣的方式創建列表它有一個空的標題欄的如何在列表中隱藏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
}
});
有人可以幫助我瞭解如何隱藏標題欄的?
它真的是你的應用程序中的所有東西嗎? –