Completed
Last Updated: 26 Mar 2014 15:30 by ADMIN
The paste functionality in RadEditor does not work when EnableTrackChanges property is set to true.  This behavior is observed under Chrome and Safari.
Completed
Last Updated: 17 Nov 2015 06:23 by ADMIN
When EnableTrackChanges property of RadEditor is set to true:

-The font name of the written text in RadEditor cannot be change and instead the default one is used. This behavior is observed under FireFox, Chrome and Safari. The workaround is to mark the already written text and then set the desired font.

-The chosen font size from the toolbar returns to its default value when the cursor changes its position and then returns back to its previous position. This behavior is observed under FireFox.
Completed
Last Updated: 27 Apr 2015 10:42 by MailUp Dev
ADMIN
Created by: Misho
Comments: 2
Category: Editor
Type: Feature Request
6
Feature request for implementing an improvement related to the current impossibility to select form elements like buttons in RadEditor content area. This is a browser behavior and it is currently preventing form editing element's properties in the module manager.
Completed
Last Updated: 25 Jun 2013 12:24 by ADMIN
When ContentAreaMode='Div', hovering over a select HTML element causes the contenteditable property to gets value 'false' in Firefox
Won't Fix
Last Updated: 09 May 2016 12:50 by ADMIN
ADMIN
Created by: Misho
Comments: 1
Category: Editor
Type: Bug Report
0
FIX: RadEditor in an iframe on iPad grows infinitely

The following workaround could be used temporarily:
   <script type="text/javascript">
            Sys.Application.add_load(function () {
                var editor = $find("<%=RadEditor1.ClientID%>");
                var viewportWidth = document.documentElement.clientWidth;
                var viewportHeight = document.documentElement.clientHeight;
                editor.setSize(viewportWidth.toString(), viewportHeight.toString());
                    }
        )
        </script>
Completed
Last Updated: 04 Sep 2013 15:30 by ADMIN
Inserting a new link or inserting a link over selection from Hyperlink Manager is not possible in Internet Explorer 7
Completed
Last Updated: 04 Sep 2019 15:18 by ADMIN
When an edited image is saved in the Editor's ImageManager, the file is selected but the preview/properties areas on the right are not active. The user should click first on another image and then come back to the edited one, in order to be able to preview it or to change its properties.
Video, demonstrating the behavior: http://screencast.com/t/DAtzhgalHvA
Completed
Last Updated: 04 Sep 2019 14:22 by ADMIN
When I call OnParentNodeChanged on an Editor, while viewing the page using HTTPS, I get the following message in IE:
SEC7111: HTTPS security is compromised by (null) 
Completed
Last Updated: 05 Nov 2019 17:54 by ADMIN
In RadEditor, when creating a table, then going to the Table Properties/Style builder/Border option, the Border Width information is pushed down and not all options are accessible.
Completed
Last Updated: 11 Nov 2014 12:29 by Elena
ADMIN
Created by: Slav
Comments: 1
Category: Editor
Type: Bug Report
0
If a RadEditor is placed in an UpdatePanel and it is initially invisible (its property 'Visible' is set to false), the skins of the dialogs will not be loaded correctly when the editor is displayed ('Visible' is set to true).
Completed
Last Updated: 07 Jun 2016 06:10 by ADMIN
Currently RadEditor does not support ShortCuts when its toolbar is set to RibbonBar.

Possible option is to register the shortcut via client-side approach, by using the ShortcutManager object (http://docs.telerik.com/devtools/aspnet-ajax/controls/editor/client-side-programming/shortcutmanager-object):

<telerik:RadEditor ID="RadEditor1" runat="server" ToolbarMode="RibbonBar" OnClientLoad="OnClientLoad">
</telerik:RadEditor>

<script>
    function OnClientLoad(editor, args) {
        editor.get_shortCutManager().addShortCut("TemplateManager", "CTRL+ALT+S");
    }
</script>
Completed
Last Updated: 07 Jun 2016 12:26 by ADMIN
When a user is trying to insert new text inside other's user not accepted change the cursor is automatically jumping in the end of the unaccepted change. Different expected behavior can be the change to break the current change.
Completed
Last Updated: 14 Sep 2021 12:01 by ADMIN
Release Q1 2015
The problem is reproducible when the selected element has a CSS property applied that enables the hasLayout feature of the element under IE.

When an anchor hasLayout we cannot properly select it. The hyperlink manager shows the text, but modifying it is not carried to the actual markup. 



CSS properties that trigger hasLayout in IE:

CSS property	Value
display	inline-block
height	any value
float	left or right
position	absolute
width	any value
-ms-writing-mode	tb-rl
zoom	any value
Completed
Last Updated: 13 Feb 2013 18:03 by Tim
After editing the properties of a hyperlink in Chrome the link just disappears. See the video at http://screenr.com/XxX7 which demonstrates the issue occurring on the demo site.
Completed
Last Updated: 10 Nov 2014 13:49 by Elena
Whenever there are texts and text boxes, checking the spelling duplicates the text 
Video reproduction: http://screencast.com/t/oShyk0ww
Declined
Last Updated: 01 Nov 2013 13:06 by ADMIN
Whe you're trying to add an image with "#" or "&" symbols in it's title - image displays as corrupted in image editor.
Completed
Last Updated: 10 Nov 2014 11:08 by Elena
Completed
Last Updated: 20 Jan 2016 16:35 by ADMIN
Provide the ability to select and resize table elements in Chrome and Safari. This feature is already implemented in the docs.google.com web editor by replacing the table cells with div elements and providing resize handlers for them.