This is a migrated thread and some comments may be shown as answers.

RadDockLayout not working in IE

2 Answers 57 Views
General Discussions
This is a migrated thread and some comments may be shown as answers.
Palani
Top achievements
Rank 1
Palani asked on 13 Mar 2012, 09:34 AM
Hai i am using Telerik ASP.NET Ajax Q1 2012.


============================================================================================================

<telerik:RadAjaxPanel ID="rapDashboard" runat="server">
                     <telerik:RadDockLayout runat="server" ID="rdlWidget" EnableEmbeddedSkins="false" Skin="Default" OnSaveDockLayout="rdlWidget_SaveDockLayout">
                       <telerik:RadSplitter ID="RadSplitter1" runat="server" Width="1000px"  Height="100%" BorderSize="0" OnClientLoaded="AutoSize" ResizeWithParentPane="false" BorderStyle="None" BorderWidth="0px">
                            <telerik:RadPane ID="Left" runat="server" OnClientResized="afterResize" Scrolling="None" CssClass="NewStyle" Height="100%" BorderStyle="None" BorderWidth="0px" >
                                <asp:UpdatePanel runat="server" ID="upLeftzone" UpdateMode="Conditional" ChildrenAsTriggers="false">
                                    <ContentTemplate>
                                        <telerik:RadDockZone ID="rdzLeft" runat="server" Orientation="Vertical" FitDocks="true" Width="95%"
                                        BorderStyle="None" Style="float: left; margin-right:-5px; overflow:hidden;font-size:18pt;font-family:Arial;font-weight:bold; border-right-style:none; border-right-width:0px;padding: 4px; width: 100%;">
                                        </telerik:RadDockZone>
                                    </ContentTemplate>
                                   <Triggers>
                                    <asp:AsyncPostBackTrigger ControlID="rdzLeft" />
                                    </Triggers>
                                </asp:UpdatePanel>
                            </telerik:RadPane>
                            <telerik:RadPane ID="Right" runat="server" OnClientResized="RightZoneafterResize" Scrolling="None" CssClass="NewStyle" Height="100%" BorderStyle="None" BorderWidth="0px">
                                <asp:UpdatePanel runat="server" ID="upRightzone" UpdateMode="Conditional" ChildrenAsTriggers="false">
                                    <ContentTemplate>
                                        <telerik:RadDockZone ID="rdzRight"  runat="server" Orientation="Vertical" BorderStyle="None" FitDocks="false" Width="95%"
                                        Style="float: left; border-right-style:none; border-right-width:0px;padding: 4px;  width: 100%;">
                                        </telerik:RadDockZone>
                                     </ContentTemplate>
                                   <Triggers>
                                   <asp:AsyncPostBackTrigger ControlID="rdzRight" />
                                    </Triggers>
                                </asp:UpdatePanel>
                            </telerik:RadPane>
                        </telerik:RadSplitter>
                    </telerik:RadDockLayout>   
                </telerik:RadAjaxPanel>


====================================================================================

This is my code.The rad dock is working fine in Firefox.But in IE it produced the below error


Message: Invalid argument.
Line: 308
Char: 1
Code: 0
URI: http://aspnet-scripts.telerikstatic.com/ajaxz/2012.1.215/Input/TextBox/RadInputScript.js

I tested in IE7 and IE8.

2 Answers, 1 is accepted

Sort by
0
Slav
Telerik team
answered on 15 Mar 2012, 11:40 AM
Hello Palani,

Please elaborate on the scenario that you have implemented, as currently I am not aware of your exact setup and most probably there is code, related to the problem, that is not included in the provided sample. It appears that the encountered issue is connected with RadTextBox controls on your page. Are you using RadTextBox in your scenario and how is it incorporated?

Also, note that wrapping an UpdatePanel in a RadAjaxPanel is not a supported scenario, so I would suggest checking if the problem persists if you remove the inner UpdatePanels. You can also test if the issue still occurs when your remove the Ajax controls (UpdatePanel, RadAjaxPanel) from your page.

Overall, I will need a more detailed description of your case as well as reliable steps to reproduce the problem so that I can suggest an according solution.

Kind regards,
Slav
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
0
Palani
Top achievements
Rank 1
answered on 15 Mar 2012, 11:45 AM
Thank you for your reply.
That IE issue solved when i added "RadInputManager" to my page.
<telerik:RadInputManager ID="RadInputManager1" runat="server"></telerik:RadInputManager>
Tags
General Discussions
Asked by
Palani
Top achievements
Rank 1
Answers by
Slav
Telerik team
Palani
Top achievements
Rank 1
Share this question
or