I have a panel where I insert some HTML from the server:
myPanel.update(response.responseText);
But if this text is too big, none of the sc
Basically you would just add the autoScroll property like
autoScroll: true
Here's a working JSFiddle
...or if you always want a vertical scrollbar
overflowY: 'scroll'
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.