Is it possible to scroll the list without setting some static height, I need to make the list to scroll independent of its parent controls.
{
xtype: 'panel',
layout: {
type: 'fit',
align: 'stretch'
},
items: [{
xtype: 'list',
//height:'350px', //working for static height
scrollable: true,
itemTpl: '{title}',
data: [{
title: 'Item 1'
}]
}]
}