Extjs scrollable panel
Actually you should have two properties together:
autoScroll: 'true'
and
height: 300
They work together, one without the other will not produce the scroll bar.
...or if you always want a vertical scrollbar
overflowY: 'scroll'
Basically you would just add the autoScroll property like
autoScroll: true
Here's a working JSFiddle