Popup window of ModalPopup does not have scrollbar.

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
 
B

bruce barker

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)
 
Top