Popup window of ModalPopup does not have scrollbar.

  • Thread starter Thread starter zlf
  • Start date Start date
Z

zlf

I'm using AjaxControlToolkit. For the lengthy prompted dialog (whose height
is beyound the screen) can not be scrolled to the buttom(I used IE 6.0
version SP2). How to make it scrollable?

My css:
..modalBackground {
background-color:Gray;
filter:alpha(opacity=70);
opacity:0.7;
}

..modalPopup {
background-color:white;
border-width:1px;
border-style:solid;
border-color:Gray;
padding:2px;
width:auto;
height:auto;
}

Thanks
 
the modal popup is just a div that is centered. to get it to scroll, you
should put a div inside with an absolute height, and set the overflow:auto.

-- bruce (sqlwork.com)
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top