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 scrollbars appear to navigate the text.
How can I configure a vertical scrollbar in this panel?
This is my panel definition:
{ xtype:'panel', width: '100%', height: 300, id:'mypanel' },
Thanks.
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'
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With