静的な高さを設定せずにリストをスクロールすることは可能ですか?リストを親コントロールとは別にスクロールする必要があります。
{
xtype: 'panel',
layout: {
type: 'fit',
align: 'stretch'
},
items: [{
xtype: 'list',
//height:'350px', //working for static height
scrollable: true,
itemTpl: '{title}',
data: [{
title: 'Item 1'
}]
}]
}