Completed
Last Updated: 07 Jun 2016 11:49 by ADMIN
If a font table (i.e. default font, or the \fonttbl keyword) is missing from the RTF content that is being loaded in RadEditor, the control should not throw an error. If possible or needed, a font table section can be added if it is not already present in the content.
Completed
Last Updated: 03 May 2016 13:40 by Doug Maxwell
When HTML content is set to the editor and has stylization with the inline style attribute the 'ConvertInlineStylesToAttributes' filter converts some of them to attributes, but after a post back they disappear.
Completed
Last Updated: 20 Jan 2016 15:13 by ADMIN
When only one word is inside the content of the editor. If you select it and try to apply a desired class name from the mentioned tool, nothing happens. 
Won't Fix
Last Updated: 09 Jun 2016 06:34 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: Editor
Type: Bug Report
0
When indenting list items in ordered list, the created nested list type remains the same.
Completed
Last Updated: 12 Oct 2015 08:47 by Phil
The resize handles of the ImageEditor's drawing tools are displaced when the edited is zoomed (both zoomed in or out).
Completed
Last Updated: 19 Jan 2017 09:38 by ADMIN
When a RadEditor control is set to a small height and ContentAreaMode='DIV' resizing the wrapper causes the size calculation functionality to break, because the calculated value is negative.  
Completed
Last Updated: 19 Jan 2017 09:39 by ADMIN
When the content of the editor is within a SPAN element, nested in a P, pasting data with P element inside it using the pasteHtml() method throws JavaScript errors and the SPAN element is broken by the nested P elements.

Steps to reproduce:
1.Set editor's content with this content: <p><span>Some text</span></p>

2.Use the editor's pasteHtml() method to paste this HTML in the middle of the above text: <p>Second text</p>

3.The result HTML is this:
<P><SPAN>Some</P>
<P>Second text</P>
<P>&nbsp;text</SPAN><SPAN>​</SPAN></P>

 
Won't Fix
Last Updated: 08 Jun 2016 14:59 by ADMIN
The problem could be described with the following behavior:
·         Cannot insert a link with the Link Manager;
·         If switched to HTML mode cannot return to Design mode, switching to Preview – allows Design mode.
·         A JavaScript error is thrown on focusing and on editing the content area. 

Possible fixes are: 
o   Removing the Modernizr JavaScript file;
o   Setting the RadEditor with ContentAreaMode="Iframe" property;
Completed
Last Updated: 04 Sep 2019 15:13 by ADMIN
When multiple instances of RadEditor are placed inside hidden ASP Panel (visible='false') which is ajaxified with RadAjaxManager/RadAjaxPanel, and then the visibility of the ASP Panel is switched to true, the Statistics Module of the second, third.. Editors display 'undefined'. The issue is observed under Internet Explorer.

The workaround is to use:

-either ASP:UpdatePanel instead of the RadAjaxManager/RadAjaxPanel

-OR use the following JavaScript override:

            Telerik.Web.UI.Editor.Modules.RadEditorStatistics.prototype.doCount = function () {
            
                if (!this.get_visible()) return;

                var content = this.get_editor().get_text();

                var words = 0;
                var chars = 0;
                if (content) {
                    var punctRegX = /[!\.?;,:&_\-\–\{\}\[\]\(\)~#'"]/g;
                    content = content.replace(punctRegX, "");
                    var trimRegX = /(^\s+)|(\s+$)/g;
                    content = content.replace(trimRegX, "");
                    if (content) {
                        var splitRegX = /\s+/;
                        var array = content.split(splitRegX);

                        words = array.length;

                        var newLines = /(\r\n)+/g;
                        content = content.replace(newLines, "");
                        chars = content.length;
                    }
                }

                var elem = this.get_element();
                elem.innerHTML = "<span style='line-height:22px'>" + "Words:" + " " + words + "   " + "Characters:" + " " + chars + " </span>";
            }

In order to make the above function override working, it must be placed:

-Either below the RadScriptManager and load all the necessary resources through ScriptReferences of the RadScriptManager (disable the embedded resources of the RadEditors' instances too)

-OR create an additional instance of RadEditor in a hidden div, outside the AjaxPanel and place the function override below it.

Completed
Last Updated: 04 Sep 2019 14:57 by ADMIN
When navigating inside a table in the RadEditor, pressing the right arrow key of the keyboard moves the cursor only till the last table cell and the cursor does not exits the table. 
Won't Fix
Last Updated: 04 Sep 2019 15:00 by ADMIN
The Insert Web Part tool in RadEditor for SP 2010 throws JavaScript error (reproducible in all browsers).

Steps to reproduce:
1. Open http://sharepoint.telerik.com/aspnet-ajax/web-parts/Pages/Content-Editor-Web-Part-using-RadEditor.aspx
2. Click over the content of the Editor, so the toolbar will be shown
3. Click over the Insert Web Part Tool

video - http://screencast.com/t/Df3aV6svUy

Completed
Last Updated: 11 Apr 2014 11:51 by ADMIN
RadEditor's content is messing up when links are generated through document manager and submit it from Preview mode. The issue is reproducible in Internet Explorer 7

However, a possible workaround for the issue would be to set the following code the OnClientSubmit event of the RadEditor:

<telerik:RadEditor OnClientSubmit = "OnClientSubmit" />
 
<script>
   function OnClientSubmit(editor)
   {
   editor.set_mode(1); //Force design mode
   }
</script>
Completed
Last Updated: 30 Sep 2015 09:42 by ADMIN
When opening a RadEditor under Chrome and switch to HTML mode in the bottom left corner, close to the Design title there is missing a small part of the border.
Completed
Last Updated: 10 Aug 2021 16:41 by ADMIN
Telerik version 2011.1.614.35
I am facing following two issues with RadEditor on Chrome (version 28.0.1500.95) and Safari (version 5.1.7) -

a. Gray area is seen in the lower part of the RadEditor for Design and Preview modes. When some text is typed, the gray background vanishes for that line of text. 

b. Border of the RadEditor is not complete at the bottom left corner in the HTML mode. This behavior is seen whenever there is some text in it, be it the default text or the text of the field that is bound. 

Please refer the attachment RadEditorIssues.png 
Declined
Last Updated: 01 Mar 2022 16:00 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: Editor
Type: Feature Request
0
Ability for the RadEditor's validator dialog to validate HTML 5 markup inside it's content
Completed
Last Updated: 13 Nov 2014 13:03 by Elena
A possible workaround:
<rad:RadEditor ID="RadEditor1" runat="server" OnClientCommandExecuted="OnClientCommandExecuted"></rad:RadEditor>
function OnClientCommandExecuted(editor, args) {
                if ("Unlink" == args.get_commandName()) {
                    if ($telerik.isFirefox) {
                        var anchor = editor.getSelectedElement();
                        if (anchor && anchor.nodeName == "A") {
                            Telerik.Web.UI.Editor.Utils.removeNode(anchor);
                        }
                    }
                }
            }  
Declined
Last Updated: 01 Mar 2022 16:07 by ADMIN
When hyperlinks are inserted into the content of RadEditor in preview mode there are additional attributes , which are retrieved by the get_html() method. 

If the MaxHtmlLength is set and the content is close to the limit on switching to preview mode breaks the normal behavior of the editor. The validator alerts that the length is exceeded, because of the additional attributes and the client is not able to open any other mode.
Completed
Last Updated: 14 Jan 2014 16:03 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: Editor
Type: Feature Request
18
AutoResizeHeight functionality is not working correctly under IE, Chrome and Opera, when it is set to true.

Behavior:
Under IE: Editor is not resized when content is deleted.
Under Chrome: Editor's content area is resized to cover the space but the editor preserve its height.
under Opera: Editor keeps expanding when removing content.
Completed
Last Updated: 27 Feb 2014 09:54 by ADMIN
 If there are textarea tags or style tags in the HTML content of RadEditor, after completing the spell check  the content is repeated several times.