I have two RadWindows side-by-side within a RadWindowManager. Both windows can be resized and moved, and are populated (say with some static html page). When I resize or move one of the windows by dragging the borders or titlebar, the other window that doesn't have focus blanks out for the duration of the drag. The contents reappear only when the resize/move operation is completed on the first window.
Can this behavior be modified, so that contents of the second window are visible even while the first window is being resized/moved?
I'm using version 2010.1.309.20, and my IDE is VS 2008, with .NET 3.5 SP1. The browser being used is IE 6.0.
Here is the body of my page:
<body> |
<form id="form1" runat="server"> |
<div> |
<asp:ScriptManager ID="ScriptManager1" runat="server"> |
</asp:ScriptManager> |
<telerik:RadWindowManager ID="DBRadWindowManager" runat="server"> |
<Windows> |
<telerik:RadWindow ID="CustomerWindow" runat="server" VisibleOnPageLoad="true" TabIndex="1" ReloadOnShow="true" |
BorderStyle="None" Behavior="Default" Height="250px" InitialBehavior="None" Left="5px" |
Skin="Telerik" Title="CUSTOMER" Top="20px" Width="300px" NavigateUrl="Source1.htm" |
Behaviors="Maximize,Minimize,Move,Reload,Resize" KeepInScreenBounds="true"> |
</telerik:RadWindow> |
<telerik:RadWindow ID="OrderWindow" runat="server" VisibleOnPageLoad="True" TabIndex="2" ReloadOnShow="true" |
BorderStyle="None" Behavior="Default" Height="250px" InitialBehavior="None" Left="400px" |
Skin="Telerik" Title="ORDERS" Top="20px" Width="300px" NavigateUrl="Source2.htm" |
Behaviors="Maximize,Minimize,Move,Reload,Resize" KeepInScreenBounds="true"> |
</telerik:RadWindow> |
</Windows> |
</telerik:RadWindowManager> |
</div> |
</form> |
</body> |
Thanks,
Karun.