EXTJS Ext.Window Scroll

I have several pop-ups on my page which are mostly ext.window. I am trying to set autoScroll: true for them, but it does not show scrollbars. Here is the code for one of the pop-ups. Please tell me what I am doing wrong.

windowTerms = new Ext.Window({ autoWidth: true, autoHeight: true, header: false, closable: false, modal: false, autoScroll: true, frame: false, border: false, html: html }); windowTerms.show(); } function window_termspopClose() { windowTerms.hide(); } 
+4
source share
1 answer

Try setting the height and width of the window.

+10
source

Source: https://habr.com/ru/post/1397955/


All Articles