Hi, I'm using RadWindowManger in a DNN module and calling it up from the server side. However, when it pops up it stays at the center of the screen for a moment, but then pops up centered as if the scroll bar was all the way up. This is more noticeable when the module is further down the page. To the user it will pop up for a moment then move outside of the scroll area if it's scrolled down far enough. Here's the server side code and .ascx code. The .ascx code is located at the very bottom of my .ascx if that matters.
<
telerik:RadWindowManager
ID
=
"RadWindowManager1"
runat
=
"server"
EnableShadow
=
"true"
KeepInScreenBounds
=
"True"
></
telerik:RadWindowManager
>
<
script
type
=
"text/javascript"
>function alertCallBackFn(arg) { }</
script
>
RadWindowManager1.RadAlert(
"An error has occured!"
, 330, 100,
"Error"
,
"alertCallBackFn"
)