我在容器中有一个列表视图,然后在表单面板中,又在具有正确配置的休息代理和 json 阅读器的选项卡面板中。在 Sench Architect 2 设计模式下查看时,我可以看到数据项并滚动。但是,当我运行时,屏幕的列表部分是空白的:仅显示停靠在顶部的搜索字段。
我一直在摆弄这个几个小时没有成功,我们将不胜感激。
我的代码如下:
Ext.define('MyApp.view.MyTabPanel', {
extend: 'Ext.tab.Panel',
alias: 'widget.MainTab',
config: {
items: [
{
xtype: 'container',
title: 'Customer',
layout: {
type: 'fit'
},
items: [
{
xtype: 'formpanel',
scrollable: 'vertical',
items: [
{
xtype: 'container',
layout: {
type: 'fit'
},
items: [
{
xtype: 'searchfield',
placeHolder: 'Type customer name'
},
{
xtype: 'list',
docked: 'bottom',
height: 431,
ui: 'round',
itemTpl: [
'<div>{Name}</div>'
],
store: 'CustomersStore',
itemHeight: 25,
striped: true
}
]
}
]
}
]
},
{
xtype: 'container',
title: 'SKU'
},
{
xtype: 'container',
title: 'Invoice'
},
{
xtype: 'container',
title: 'Payment'
}
]
}
});