The preserve client state feature does not work right when window's RestrictionZoneID property is set. The windows height and width reverts to original for some reason. See sample code.
| <asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server"> |
| <div id="restrictionZone" style="border: 1px dotted #000000; width: 99%; height: 95%; |
| position: relative;"> |
| <table cellpadding="1" cellspacing="1" style="height: 65px; position: absolute; bottom: 0px;"> |
| <tr> |
| <td id="portfolioZone" style="width: 230px;"> |
| </td> |
| <td id="banchmarkZone" style="width: 230px;"> |
| </td> |
| </tr> |
| </table> |
| </div> |
| <telerik:RadWindowManager ID="RadWindowManager1" runat="server" KeepInScreenBounds="true" |
| RestrictionZoneID="restrictionZone" EnableViewState="False" PreserveClientState="True"> |
| <Windows> |
| <telerik:RadWindow ID="portfolio" runat="server" NavigateUrl="#" |
| ShowContentDuringLoad="True" VisibleOnPageLoad="True" ReloadOnShow="False" VisibleStatusbar="False" |
| Left="0" Top="0" Width="300" Height="300" MinimizeZoneID="portfolioZone"> |
| </telerik:RadWindow> |
| <telerik:RadWindow ID="banchmark" runat="server" NavigateUrl="#" ShowContentDuringLoad="True" |
| VisibleOnPageLoad="True" ReloadOnShow="False" VisibleStatusbar="False" Left="0" |
| Top="0" Width="300" Height="300" MinimizeZoneID="banchmarkZone"> |
| </telerik:RadWindow> |
| </Windows> |
| </telerik:RadWindowManager> |
| </asp:Content> |
