4

I have a couple of pop up boxes in my page which are basically ext.window. I am trying to set autoScroll:true for them but it doesnt show the scroll bars. Here is the code for one of the pop up's. 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();
}

1 Answer 1

10

Try providing a height and width to the window.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.