Hello everyone,
I have a site with multiple instances of the RadEditor. All of them display correctly except this one. I have searched for a solution, but found nothing that makes sense to me (it should be pointed out that I am a designer and not a developer, so most of what I have read here doesn't make sense to me).
I've attached the code and picture of what is happening. Any ideas what is happening?
Thanks in advance for your help.
Josh
I have a site with multiple instances of the RadEditor. All of them display correctly except this one. I have searched for a solution, but found nothing that makes sense to me (it should be pointed out that I am a designer and not a developer, so most of what I have read here doesn't make sense to me).
I've attached the code and picture of what is happening. Any ideas what is happening?
Thanks in advance for your help.
Josh
<div id="blog_header_editor"> Header: <telerik:RadScriptManager ID="RadScriptManager1" runat="server"> </telerik:RadScriptManager> <telerik:RadEditor ID="HeaderEditor1" runat="server" ImageManager-DeletePaths="/UserFiles/Images" ImageManager-UploadPaths="/UserFiles/Images" ImageManager-ViewPaths="/UserFiles/Images" ImageManager-EnableImageEditor="true" DocumentManager-DeletePaths="/UserFiles/Documents" DocumentManager-UploadPaths="/UserFiles/Documents" DocumentManager-ViewPaths="/UserFiles/Documents" Skin="Windows7" Width="720" Height="440"> <Tools> <telerik:EditorToolGroup Tag="MainToolbar"> <telerik:EditorTool Name="Print" ShortCut="CTRL+P" /> <telerik:EditorTool Name="AjaxSpellCheck" /> <telerik:EditorTool Name="FindAndReplace" ShortCut="CTRL+F" /> <telerik:EditorTool Name="SelectAll" ShortCut="CTRL+A" /> <telerik:EditorTool Name="Cut" /> <telerik:EditorTool Name="Copy" ShortCut="CTRL+C" /> <telerik:EditorTool Name="Paste" ShortCut="CTRL+V" /> <telerik:EditorTool Name="PasteStrip" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="Undo" ShortCut="CTRL+Z" /> <telerik:EditorTool Name="Redo" ShortCut="CTRL+Y" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup Tag="InsertToolbar"> <telerik:EditorTool Name="ImageManager" ShortCut="CTRL+G" /> <telerik:EditorTool Name="DocumentManager" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="LinkManager" ShortCut="CTRL+K" /> <telerik:EditorTool Name="Unlink" ShortCut="CTRL+SHIFT+K" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="Superscript" /> <telerik:EditorTool Name="Subscript" /> <telerik:EditorTool Name="InsertParagraph" /> <telerik:EditorTool Name="InsertGroupbox" /> <telerik:EditorTool Name="InsertHorizontalRule" /> <telerik:EditorTool Name="InsertDate" /> <telerik:EditorTool Name="InsertTime" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="FormatCodeBlock" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="FormatBlock" /> <telerik:EditorTool Name="FontName" ShortCut="CTRL+SHIFT+F" /> <telerik:EditorTool Name="RealFontSize" ShortCut="CTRL+SHIFT+P" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="AbsolutePosition" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="Bold" ShortCut="CTRL+B" /> <telerik:EditorTool Name="Italic" ShortCut="CTRL+I" /> <telerik:EditorTool Name="Underline" ShortCut="CTRL+U" /> <telerik:EditorTool Name="StrikeThrough" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="JustifyLeft" /> <telerik:EditorTool Name="JustifyCenter" /> <telerik:EditorTool Name="JustifyRight" /> <telerik:EditorTool Name="JustifyFull" /> <telerik:EditorTool Name="JustifyNone" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="Indent" /> <telerik:EditorTool Name="Outdent" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="InsertOrderedList" /> <telerik:EditorTool Name="InsertUnorderedList" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="ToggleTableBorder" /> <telerik:EditorTool Name="XhtmlValidator" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup> <telerik:EditorTool Name="ForeColor" /> <telerik:EditorTool Name="BackColor" /> <telerik:EditorTool Name="ApplyClass" /> <telerik:EditorTool Name="FormatStripper" /> </telerik:EditorToolGroup> <telerik:EditorToolGroup Tag="DropdownToolbar"> <telerik:EditorTool Name="InsertSymbol" /> <telerik:EditorTool Name="InsertTable" /> <telerik:EditorTool Name="InsertSnippet" /> <telerik:EditorTool Name="ImageMapDialog" /> <telerik:EditorTool Name="InsertCustomLink" ShortCut="CTRL+ALT+K" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="ConvertToLower" /> <telerik:EditorTool Name="ConvertToUpper" /> <telerik:EditorSeparator /> <telerik:EditorTool Name="Zoom" /> <telerik:EditorTool Name="ModuleManager" /> <telerik:EditorTool Name="ToggleScreenMode" ShortCut="F11" /> <telerik:EditorTool Name="AboutDialog" /> </telerik:EditorToolGroup> </Tools> <Content> </Content> <ImageManager ViewPaths="/UserFiles/Images" UploadPaths="/UserFiles/Images" DeletePaths="/UserFiles/Images" MaxUploadFileSize="2048000"></ImageManager> <DocumentManager ViewPaths="/UserFiles/Documents" UploadPaths="/UserFiles/Documents" DeletePaths="/UserFiles/Documents" MaxUploadFileSize="2048000"></DocumentManager> </telerik:RadEditor> </div> <div class="clear"></div> <div id="buttons"> <div id="cmdSave" class="page_property_button"> <asp:ImageButton runat="server" ID="ibtnSave" OnClick="cmdSave_Click" src="/LookAndFeel/Images/icon_save.png" class="page_property_icon" /> <div class="page_property_text"> Save<br /> This Blog </div> <div class="clear"></div> </div>