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(); }
source share