Hi ,
i am working with VS 2013 update 2 , and 2013 Q3 SP2
add this aspx code to a new project and then run the project and try to re-size the browser window and see what happened , then remove or change the style added to <body> and run the project .
i attached screen shots to show the difference .
i am working with VS 2013 update 2 , and 2013 Q3 SP2
<%@ Page Language="vb" AutoEventWireup="false" CodeBehind="Default.aspx.vb" Inherits="RadWindowResizeRTL._Default" %><!DOCTYPE html><html xmlns="http://www.w3.org/1999/xhtml"><head runat="server"> <title></title></head><body onload="PageLoad();" style="direction: rtl;"> <form id="form1" runat="server"> <div> <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server"> <script type="text/javascript"> function PageLoad() { $find('<%=me.MainWebFormRadSplitter .ClientID %>'). set_height($telerik.$(window).height() - 50); window.onresize = function () { $find('<%=me.MainWebFormRadSplitter .ClientID %>'). set_height($telerik.$(window).height() - 50); }; var MWindow = $find('<%=Me.MainRadWindow.ClientID %>'); MWindow.set_width($find('<%=Me.MainRadWindowRadPane.ClientID%>').get_width()); MWindow.set_height($find('<%=Me.MainRadWindowRadPane.ClientID %>').get_height()); MWindow.setUrl("http://www.telerik.com/"); MWindow.set_title("MWindow"); MWindow.show(); } function MainRadWindowRadPane_Resized(sender, args) { var MWindow = $find('<%=Me.MainRadWindow.ClientID %>'); MWindow.set_width(sender.get_width()); MWindow.set_height(sender.get_height()); } </script> </telerik:RadCodeBlock> <telerik:RadScriptManager ID="MainWebFormRadScriptManager" runat="server"> </telerik:RadScriptManager> </div> <telerik:RadAjaxManager ID="MainWebFormRadAjaxManager" runat="server" DefaultLoadingPanelID="MainWebFormRadAjaxLoadingPanel"> </telerik:RadAjaxManager> <telerik:RadAjaxLoadingPanel ID="MainWebFormRadAjaxLoadingPanel" runat="server" Skin="Default"> </telerik:RadAjaxLoadingPanel> <telerik:RadWindowManager ID="MainWebFormRadWindowManager" runat="server"> <Windows> <telerik:RadWindow ID="MainRadWindow" runat="server" Behavior="Reload" Behaviors="Reload" DestroyOnClose="True" NavigateUrl="http://www.telerik.com/" ReloadOnShow="True" RestrictionZoneID="MainRadWindowRadPane" ShowContentDuringLoad="False" ShowOnTopWhenMaximized="False" Title="MainRadWindow" VisibleStatusbar="False"> </telerik:RadWindow> </Windows> </telerik:RadWindowManager> <telerik:RadSkinManager ID="MainWebFormRadSkinManager" runat="server"> </telerik:RadSkinManager> <br /> <telerik:RadSplitter ID="MainWebFormRadSplitter" runat="server" Width="100%"> <telerik:RadPane ID="PanelRadPane" runat="server" Width="200px" Index="0"> </telerik:RadPane> <telerik:RadPane ID="MainRadWindowRadPane" runat="server" OnClientResized="MainRadWindowRadPane_Resized" Index="1"></telerik:RadPane> </telerik:RadSplitter> </form></body></html>add this aspx code to a new project and then run the project and try to re-size the browser window and see what happened , then remove or change the style added to <body> and run the project .
i attached screen shots to show the difference .