Dear Telerik,
We're facing a problem in Maximizing a RadWindow on Open from Javascript or with InitialBehaviors="Maximize"
from ASPX.
To reproduce the problem we created a small Default.aspx page like this:
When you open this page in IE9 and click on the Show Maximized Window Link, you see a page that is not maximized to the full height. But when you open it in Chrome, you see it Maximized.
We're using the latest published version as of today.
Attached please find the 2 Screen Shots under IE9 and Under Chrome.
Thanks, as Always
Salah A. Malaeb
TeknoBuild
We're facing a problem in Maximizing a RadWindow on Open from Javascript or with InitialBehaviors="Maximize"
from ASPX.
To reproduce the problem we created a small Default.aspx page like this:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="Default" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title></title> <telerik:RadStyleSheetManager id="RadStyleSheetManager1" runat="server" /> </head> <body> <form id="form1" runat="server"> <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <script type="text/javascript"> function showWindow() { var proWindow = $find('<%= xW.ClientID %>'); proWindow.set_navigateUrl('http://www.telerik.com'); proWindow.set_title('My Window Title'); window.setTimeout(function () { proWindow.show(); proWindow.setActive(true); }, 0); return false; } </script> <div> <telerik:RadWindowManager ID="wM" runat="server" Overlay="true" ReloadOnShow="false" VisibleStatusbar="false" VisibleOnPageLoad="false" ShowContentDuringLoad="false" > <Windows> <telerik:RadWindow ID="xW" runat="server" VisibleTitlebar="true" EnableViewState="false" Behaviors="Move,Close,Maximize" ReloadOnShow="true" Modal="true" InitialBehaviors="Maximize" > </telerik:RadWindow> </Windows> </telerik:RadWindowManager> <asp:LinkButton ID="btnShow" Text="Show Maximized Window" runat="server" OnClientClick="return showWindow();" /> </div> </form> </body> </html>When you open this page in IE9 and click on the Show Maximized Window Link, you see a page that is not maximized to the full height. But when you open it in Chrome, you see it Maximized.
We're using the latest published version as of today.
Attached please find the 2 Screen Shots under IE9 and Under Chrome.
Thanks, as Always
Salah A. Malaeb
TeknoBuild