コンテナー内にリスト ビューがあり、フォーム パネル内、タブ パネル内に、レスト プロキシと 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'
}
]
}
});