In my application i am using four radwindow and each window performs a specific request. The problem i am experiencing is ... i have set different size and other properties for each window but sometimes when i open the radwindow all the properties i have set for that window goes off and the window opens with that page content....
and if i refresh the main window and open the radwindow its properties are regained and working fine....
below is my code
<telerik:RadWindowManager ID="RadWindowManager1" runat="server" EnableShadow="true" Style="z-index: 7001" >
<Windows>
<telerik:RadWindow ID="UserListDialog" runat="server" Title="Editing record" Height="200px" DestroyOnClose="true"
Width="600px" Left="150px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" KeepInScreenBounds="True" VisibleTitlebar="False" VisibleStatusbar="False" Skin="Vista" Behaviors="Close,Move" />
</Windows>
<Windows>
<telerik:RadWindow ID="Details" runat="server" VisibleStatusbar="false" NavigateUrl="windowcs.aspx" DestroyOnClose="true"
Height="530px" Width="645px" AutoSize="false" Behaviors="Close,Move" ShowContentDuringLoad="false" Skin="Vista" Modal="true" KeepInScreenBounds="True" />
</Windows>
<Windows>
<telerik:RadWindow ID="UserListDialog1" runat="server" Title="Editing record" Height="200px" DestroyOnClose="true"
Width="600px" Left="150px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" Skin="Vista" VisibleTitlebar="False" VisibleStatusbar="False" KeepInScreenBounds="True" Behaviors="Close,Move" />
</Windows>
<Windows>
<telerik:RadWindow ID="Uow1" runat="server" Title="Upload Photos" Height="550px" DestroyOnClose="true"
Width="950px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" Skin="Vista" AutoSize="False" VisibleTitlebar="True" VisibleStatusbar="False" EnableTheming="True" Behaviors="Close,Move,Minimize" KeepInScreenBounds="True" />
</Windows>
<Windows>
<telerik:RadWindow ID="RadWindow1" runat="server" Title="Move record" Height="200px" DestroyOnClose="true"
Width="600px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" Skin="Vista" VisibleTitlebar="False" VisibleStatusbar="False" KeepInScreenBounds="True" Behaviors="Close,Move" />
</Windows>
<Windows>
<telerik:RadWindow ID="Copw" runat="server" Title="Cocord" Height="200px" DestroyOnClose="true"
Width="600px" ReloadOnShow="true" ShowContentDuringLoad="false" Modal="true" Skin="Vista" VisibleTitlebar="False" VisibleStatusbar="False" KeepInScreenBounds="True" Behaviors="Close,Move" />
</Windows>
<Windows>
<telerik:RadWindow
id="RadWindow2"
KeepInScreenBounds="true"
runat="server"
showcontentduringload="true"
width="650px"
height="550px"
title="Sow"
Modal="true"
behaviors="Close">
</telerik:RadWindow>
</Windows>
</telerik:RadWindowManager>
kindly give me a solution for making the radwindow to appear with the same properties whenever i open it...