通过默认列表中没有标题栏的,但是当我以这样的方式创建列表它有一个空的标题栏的如何在列表中隐藏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
}
});
有人可以帮助我了解如何隐藏标题栏的?
它真的是你的应用程序中的所有东西吗? –