Completed
Last Updated: 28 Jul 2015 08:23 by ADMIN
Deleting all content in editor (e.g.,  Ctrl+A and delete), and switching to HTML mode, an unwanted   is always present. Whereas, the content should be empty. 
Completed
Last Updated: 31 Jul 2015 11:16 by ADMIN
The scenario is very specific. It is reproducible only under IE11 when RadEditor is loaded in an iframe, in Div content area mode, with AutoResizeHeight="true" and Skin is set to MetroTouch or BlackMetroTouch
Declined
Last Updated: 28 Mar 2019 10:31 by ADMIN
Created by: Patrick
Comments: 2
Category: Editor
Type: Feature Request
0
While the RadEditor is able to now be used on Mobile devices more easily, the crux of the WYSIWYG for us is that when creating either HTML for web or emails, the HTML that is generated from the RadEditor doesn't always generate the code that follows or renders correctly on mobile devices.  Ideally, the respective HTML that is generated is correctly output in Mobile Responsive format for all mobile devices.
Unplanned
Last Updated: 07 Jun 2016 07:48 by Joe
There are some cases where Find and Replace produces unexpected content when Track Changes is enabled. For example:

    1. add some tracked content;
    2. modify the content;
    3. use Find and Replace to replace words in the tracked content.

The output is that words are removed, but the replacements never appear. 


Completed
Last Updated: 21 Jul 2015 11:58 by ADMIN
Such a scenario is reproducible when RadEditor is used in Template container and the control is AJAX-enabled. For example, in an EditTemplate or InsertTemplate. 

To workaround this bug, you need to assure that the base CSS resource is loaded before RadEditor. To do so, add manually the resource in the head element of the page:

<head runat="server">
    <title></title>
    <telerik:RadCodeBlock ID="RadCodeBlock1" runat="server">
        <link href='<%= Page.ClientScript.GetWebResourceUrl(typeof(RadEditor), "Telerik.Web.UI.Skins.EditorLite.css") %>'
            rel="stylesheet" type="text/css" />
    </telerik:RadCodeBlock>
</head>
Declined
Last Updated: 10 Jun 2021 19:13 by ADMIN
It will be possible to use Lightweight render mode with AccessibleRadEditor.
Completed
Last Updated: 08 Sep 2015 10:34 by Luigi Gaeta
When there is a need to open dialogs in browser's window instead of RadWindow, the UseClassicDialogs property is being used. With the release of Q2 2015 the functionality stopped working and throws JS error when a dialog is opened. 

To workaround this behavior you can apply the JS patch as shown below:  

    <telerik:RadEditor runat="server" ID="RadEditor1"></telerik:RadEditor>
    
    <script type="text/javascript">
        Telerik.Web.UI.RadDialogOpener.prototype._applyParameters = function (dialogName, container) {
            //If no parameters provided, return
            var parameters = this._getDialogParameters(dialogName);
            if (!parameters) return;
    
            var parametersUrlPart = "&dp=" + encodeURIComponent(parameters);
            var baseUrl = this._getBaseDialogUrl(dialogName);
            var totalUrlLength = baseUrl.length + parametersUrlPart.length;
    
            var parametersPassedFromClient = this._dialogParametersProviderTypeName == "";
            var parametersPassedThroughUrl = parametersPassedFromClient && totalUrlLength <= this.get_dialogUrlLengthLimit();
    
            if (parametersPassedThroughUrl) {
                //NEW: If the dialog features the same URL, do not reload it
                var curUrl = container.get_navigateUrl();
                var url = baseUrl + parametersUrlPart;
    
                if (curUrl != url) {
                    if (this.get_useClassicDialogs() || container.isCreated()) {
                        container.setUrl(url);
                    }
                    else {
                        container.set_navigateUrl(url);
                    }
                }
                else //Reinitialize
                {
                    var contentFrame = container.get_contentFrame();
                    if (contentFrame && contentFrame.contentWindow && contentFrame.contentWindow.$find) {
                        //TODO: Probably implement a global function initializeDialog that will be called automatically - easy for custom dialogs
                        var initDialog = contentFrame.contentWindow.initDialog;
                        if (initDialog) {
                            contentFrame.contentWindow.setTimeout(function () { initDialog(); }, 1);
                        }
                    }
                }
            }
            else {
                container.setUrl(baseUrl);
                container.DialogParameters = parameters;
            }
        };
    
    </script>
Completed
Last Updated: 01 Dec 2015 12:14 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: Editor
Type: Bug Report
0
When user has changed image properties via Image Properties dialog, changes are getting cleared when area is being added via Image Map Editor. 
Completed
Last Updated: 10 Aug 2021 13:33 by ADMIN
Steps to reproduce:
Run this in IE7 or another IE in IE7 mode:
<telerik:RadEditor ID="RadEditor1" runat="server" EditModes="Preview"></telerik:RadEditor>

Workaround:
<telerik:RadEditor ID="RadEditor1" runat="server" EditModes="Preview"></telerik:RadEditor>

<script type="text/javascript">
	(function ($T) {
		if ($telerik.isIE7) {
			var prototype = $T.Editor.UI.SizerLegacyIE.prototype;
			var setContentElementHeight = prototype.setContentElementHeight;
			$T.Editor.UI.SizerLegacyIE.prototype.setContentElementHeight = function () {
				setContentElementHeight.call(this);
				var editor = this.editor;
				if (editor.get_mode() != $T.EditModes.Html) {
					var iframeParent = this.getIframe().parentNode;
					if (Math.abs(iframeParent.offsetHeight - editor.get_element().offsetHeight) < 5) {
						iframeParent.style.height = "";
					}
				}
			}
		}
	})(Telerik.Web.UI);
</script>
Completed
Last Updated: 21 Aug 2015 15:31 by ADMIN
The error causes the editor's content area not to render. 

The following script can be used as a temporary workaround:

<telerik:RadEditor runat="server" ID="RadEdior1" OnClientSelectionChange="OnClientSelectionChange">
</telerik:RadEditor>

<script type="text/javascript">
    function OnClientSelectionChange(editor, args) {
        if (!editor.getSelectedElement()) {
            editor.focusFirstText();
        }
    }
</script>

Unplanned
Last Updated: 07 Jun 2016 07:44 by ADMIN
This will enable developers to easily change this property without customizing the FileBrowser dialog.
Won't Fix
Last Updated: 14 Jan 2022 15:28 by ADMIN
Created by: Christophe
Comments: 1
Category: Editor
Type: Bug Report
0
Hi,
There is a bug with the "Play" parameter while I insert a SWF movie.
If I uncheck this parameter, the movie still play in Chrome/Mozilla.
This bug is  from this parameter that isn't added in the Embed tag although it is in the object tag.

Example :
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="150" height="150">
<param name="Movie" value="/aspnet-ajax/Editor/images/UserDir/Marketing/Reporting_banner.swf">
<param name="play" value="false">
<param name="quality" value="high">
<param name="wmode" value="transparent">
<param name="loop" value="false">
<param name="menu" value="false"><embed src="/aspnet-ajax/Editor/images/UserDir/Marketing/Reporting_banner.swf" width="150" height="150" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" quality="high" wmode="transparent" loop="false" menu="false"></object>

Thanks a lot
Chris.
Won't Fix
Last Updated: 14 Jan 2016 11:33 by ADMIN
Completed
Last Updated: 29 Sep 2015 11:10 by ADMIN
The click event of the button is not prevented and the native anchor behavior occurs. This causes the page to scroll to the top and a # to appear in the URL. 

You can use the following code snippet to prevent the native click behavior of the anchor element and workaround the issue:

<telerik:RadEditor runat="server" ID="RE1" ToolbarMode="Floating" OnClientLoad="OnClientLoad"></telerik:RadEditor>

<script>
    function OnClientLoad(sender, args) {
        $telerik.$(".RadEditor a[title='Toggle Floating Toolbar']").attr("href", "javascript:void(0);")
    }
</script>
Completed
Last Updated: 20 Jan 2016 16:32 by ADMIN
Created by: majda
Comments: 1
Category: Editor
Type: Feature Request
0
Did telerik rich text editor check arabic language with the spell checker ?
Unplanned
Last Updated: 07 Jun 2016 07:01 by ADMIN
When creating a list or multiple paragraphs, which have links inside text, applying fore color to the whole text, links does not get affected. 

As a side effect, when only the link is selected and the same color is applied, nothing happens.  

To temporarily improve RadEditor by default to style the links according to the span wrapper elements, you can use the following approach:


 ○ When ContentAreaMode is set to Iframe or not configured:

    ASP.NET
    -----------------------------------------------------------------------
        <telerik:RadEditor runat="server">
            <CssFiles>
                <telerik:EditorCssFile Value="Styles.css" />
            </CssFiles>
            <Content>
                <ul>
                    <li>text <a href="#">link</a> text</li>
                    <li>text <a href="#">link</a> text</li>
                    <li>text <a href="#">link</a> text</li>
                </ul>
            </Content>
        </telerik:RadEditor>
    -----------------------------------------------------------------------

    Styles.css
    -----------------------------------------------------------------------
        span a {
            color:inherit;
        }
    -----------------------------------------------------------------------


 ○ When ContentAreaMode is set to Div:
    -----------------------------------------------------------------------
        <style>
            .reContentArea span a {
                color:inherit;
            }
        </style>

        <telerik:RadEditor runat="server" ContentAreaMode="Div">
            <Content>
                <ul>
                    <li>text <a href="#">link</a> text</li>
                    <li>text <a href="#">link</a> text</li>
                    <li>text <a href="#">link</a> text</li>
                </ul>
            </Content>
        </telerik:RadEditor>
    -----------------------------------------------------------------------
Completed
Last Updated: 08 Jun 2021 12:33 by ADMIN
Release R2 2021 SP1
ColorPicker inside a RadEditor don't fit inside DropDownBody, the last color jumps down a row. This happens when RadEditor Skin is set MetroTouch and RenderMode to Lightweight.
Video: http://screencast.com/t/4GOnnf0UcsfU
Completed
Last Updated: 29 Sep 2015 12:05 by ADMIN
FileBrowser dialogs cannot upload files greater than 200kb when AsyncUpload is disabled (i.e., the Upload control is used instead). 
Unplanned
Last Updated: 07 Jun 2016 06:39 by ADMIN
This feature is available when ContentAreaMode is Iframe.
Declined
Last Updated: 21 Jun 2022 09:33 by ADMIN
When creating or updating old areas, the target value always shows either Target or the lastly selected one. It does not update its state.