我在使用Sencha Architect
实现选项卡面板时遇到了困难这是代码
Ext.define('Prototype.view.App', {
extend: 'Ext.Container',
requires: [
'Prototype.view.FoodPanel'
],
config: {
items: [
{
xtype: 'tabpanel',
docked: 'bottom',
tabBar: {
docked: 'bottom',
layout: {
pack: 'center',
type: 'hbox'
}
},
items: [
{
xtype: 'container',
title: 'Test',
iconCls: 'info'
},
{
xtype: 'foodpanel',
title: 'Home',
iconCls: 'home'
}
]
}
]
}
});
出于某种原因,我的FOODPANEL是一个自定义视图(字段,间隔符,按钮的组合) 单击HOME图标时根本不显示。测试就在那里,所以我可以换成一些空白......但两者都是空白的。为什么呢?`