我在使用 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'
}
]
}
]
}
});
出于某种原因,当我单击 HOME 图标时,我的 FOODPANEL 是一个自定义视图(字段、空格、按钮的组成)根本不会出现。测试在那里,所以我可以换成空白的东西..但两者都是空白atm。为什么?`