Extjs scrollable panel

前端 未结 3 1184
感动是毒
感动是毒 2021-01-17 08:24

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

相关标签:
3条回答
  • 2021-01-17 08:30

    Basically you would just add the autoScroll property like

    autoScroll: true
    

    Here's a working JSFiddle

    0 讨论(0)
  • 2021-01-17 08:38

    ...or if you always want a vertical scrollbar

    overflowY: 'scroll'
    
    0 讨论(0)
  • 2021-01-17 08:48

    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.

    0 讨论(0)
提交回复
热议问题