I'm just getting started with the Window control. I've placed a RadWindowManager on my form and created a window inside of it:
I'm opening the window when a link is clicked:
When I run it, it works, but the shadow is applied after the Window is shown. When I had a Top and Left offset defined, these were also applied after the Window was shown causing it to jump to a new position. How can I get the properties to apply before the Window is visible?
<telerik:RadWindowManager ID="RadWindowManager1" runat="server"> <Windows> <telerik:RadWindow ID="CVC" runat="server" Animation="Slide" Behavior="Resize, Close, Move, Reload" Behaviors="Resize, Close, Move, Reload" EnableShadow="True" Height="450px" NavigateUrl="/what_is_cvc.html" style="display:none;" Title="Security Code" Width="340px" KeepInScreenBounds="True" OffsetElementID="aCvc" VisibleStatusbar="False" VisibleTitlebar="True" ShowContentDuringLoad="True" Skin="Windows7"> </telerik:RadWindow> </Windows> </telerik:RadWindowManager>I'm opening the window when a link is clicked:
<a id="aCvc" href="#" onclick='radopen(null, "CVC");' >What is this? </a>When I run it, it works, but the shadow is applied after the Window is shown. When I had a Top and Left offset defined, these were also applied after the Window was shown causing it to jump to a new position. How can I get the properties to apply before the Window is visible?
