Hello,
I have a rad editor inside a rad dialog. In IE7 , when the dialog loads for the first time the toolbar is not showing properly. This only happens in IE7 and that too only when I load it for the first time. The second time around everything works great. I am attaching the screen shot of the page.
Can you please let me know what the issue might be - Thank you
The html code in the page
Javascript in the page -
I have a rad editor inside a rad dialog. In IE7 , when the dialog loads for the first time the toolbar is not showing properly. This only happens in IE7 and that too only when I load it for the first time. The second time around everything works great. I am attaching the screen shot of the page.
Can you please let me know what the issue might be - Thank you
The html code in the page
<td align="left"><strong>Article</strong> <br /> <tlrk:RadEditor ID="D0_RadArticle" runat ="server" Width="690px" Height="420px" ToolsFile="~/XML/Editor/HelpEditor.xml" StripAbsoluteImagesPaths="true"/> </td>Javascript in the page -
function Dialog_OnOpen(dialogId) { if (dialogId == "<%=Dialog1.ClientID%>") { var editor = $find("<%=D0_RadArticle.ClientID%>"); if (OI_b.IE) editor.setSize("690", "420"); if (!OI_b.Fx) editor.onParentNodeChanged(); $get("ctl00_Dialogs_Dialog1_C").style.overflow = "hidden"; } }
