いくつかのコンテンツとリストを含むレイアウトがあります。含まれている要素に対してさまざまなST2レイアウトを試しましたが、リストをまったく表示できません。データがあり、開発者コンソールを介してリストの高さを強制することでこれを確認しました。これが私のビューの設定コードです:
config: {
scrollable: {
direction: 'vertical',
directionLock: true
},
items: [
{
xtype: 'container',
layout: 'vbox',
items: [
{
xtype: 'container',
layout: 'vbox',
cls: 'retailer-detail-container',
items: [
{
xtype: 'container',
layout: {
type: 'hbox'
},
items: [
{
xtype: 'img',
cls: 'offerDetailImg',
itemId: 'retailer-detail-image'
},
{
xtype: 'container',
layout: 'vbox',
items: [
{
xtype: 'container',
layout: 'vbox',
items: [
{
xtype: 'panel',
cls: 'offer-detail-name',
itemId: 'retailer-detail-name'
},
{
xtype: 'panel',
cls: 'offer-detail-distance',
itemId: 'retailer-detail-distance'
}
]
},
{
xtype: 'container',
cls: 'offer-detail-actions',
layout: 'hbox',
items: [
{
xtype: 'button',
cls: 'retailer-detail-contact-button',
itemId: 'retailer-detail-contact-button'
},
{
xtype: 'button',
cls: 'retailer-detail-map-button',
itemId: 'retailer-detail-map-button'
}
]
}
]
}
]
},
{
xtype: 'container',
cls: 'offer-detail-description',
itemId: 'retailer-detail-description'
}
]
},
{
xtype: 'list',
itemId: 'retailerOffersList',
scrollable: 'true',
ui: 'round',
itemTpl: '<strong>{offer_title}</strong>',
onItemDisclosure: true
}
]
}