Completed
Last Updated: 04 Sep 2019 15:20 by ADMIN
ADMIN
Created by: Slav
Comments: 1
Category: Editor
Type: Bug Report
0
When the Template Manager tool of RadEditor is enabled, the content of its dialog window is not loaded under IE.
Completed
Last Updated: 06 Mar 2015 15:04 by Marcin Szymankiewicz
If change the font in the middle of a line and start typing the new font is applied .

However when translated to a new line, the font reverts back. 
Declined
Last Updated: 25 Nov 2013 15:57 by ADMIN
Created by: Danny
Comments: 3
Category: Editor
Type: Feature Request
6
It would be great to have RadEditor offer CMS type functionality similar to the RadEditor within Sitefinity. The Sitefinity editor allows you to drag and drop different layouts to the editor and then alter each area independently. 
Duplicated
Last Updated: 14 Sep 2021 11:57 by ADMIN
Create a page as below and assign a limited toolset to each editor in the code behind:


 <telerik:RadEditor  ID="RadEditor1" Skin="Default"  ContentAreaMode="Div"   runat="server"      Width="265px" Height="120px"  ToolsWidth="265px">
       <Content><p>A Word</p> </Content>
</telerik:RadEditor>
        
 <telerik:RadEditor  ID="RadEditor2" Skin="Default"  ContentAreaMode="Div"   runat="server"     Width="265px" Height="120px"  ToolsWidth="265px">
       <Content><p>A Word</p> </Content>
</telerik:RadEditor>
        
[Continue with this until ...]

 <telerik:RadEditor  ID="RadEditor10" Skin="Default"  ContentAreaMode="Div"   runat="server"     Width="265px" Height="120px"  ToolsWidth="265px">
       <Content><p>A Word</p> </Content>
</telerik:RadEditor>
        
Now display this page and right click for the top editor's Context Sensitive popup menu. Now scroll down to the bottom menu and right click for that menu's context sensitive menu. My experience is that this will erroneously produce the popup at the top of the browser. This is the most extreme example of a general behaviour where the vertical placement of popups is typically off the mark when working with multiple editors and ContentAreaMode="Div". Get rid of the ContentAreaMode="Div" and the problem disappears. 
Completed
Last Updated: 10 May 2016 15:58 by ADMIN
Declined
Last Updated: 07 Jun 2016 12:26 by ADMIN
Currently when pasting an ordered list from MS Word, the RadEditor’s lists converter does not take into account the list’s items numbering. 

The following list
 
5.	Li1
6.	Li2

will be converted to

1.	Li1
2.	Li2
Completed
Last Updated: 15 Sep 2014 12:22 by ADMIN
If an anchor is added in the content of a RadEditor, the control is switched in Preview mode and a postback is executed,  onclick="return false;" and target="blank" will be inserted in the anchor under IE. In case these attributes are already set, they will be renamed to re_onclick and re_target and the attributes mentioned above will be inserted again.
Completed
Last Updated: 14 Sep 2021 11:12 by ADMIN
Release Q1 2015
When the RadEditor's property "AddComment" is set to true and contentArea contains only text, the unselected content is removed in Internet Explorer 9.
Completed
Last Updated: 26 Sep 2016 10:10 by ADMIN
An additional <br /> element is inserted in the editor when the following steps are executed:

1. Make sure ConvertToXhtml filter is turned on.
2. Switch the editor in HTML mode
3. Set the HTML bellow:
<div class="line1">first line of text</div>
<div class="line2">lastlineoftext</div>

4. Switch back to Design mode.
5. View the HTML using Module Manager - Real Time HTML Viewer
Expected HTML:
<div class="line1">first line of text</div>
<div class="line2">lastlineoftext</div>

 Actual HTML:
<div class="line1">first line of text</div>
<div class="line2">lastlineoftext</div><br>

 

Currently the <br> element cannot be removed from the HTML code of the content. This element exists by design and it is inserted in the editable iframe by the browser. The <br> element is used as a non-breaking line, which means that the following row can be selected and characters can be typed in it. If such element does not exist, the users will be unable to select the first row of the content area and start typing. 

The ConvertToXhtml filter actually removes this element when switched to HTML mode and retrieves it back as a last child of the <body> element, due to the above mentioned reasons. 

If you have issues with the retrieved content via the get_html() method, note that stripped content is returned when the method is used with an argument value "true".

editor.get_html(true) - returns the HTML content, stripped by the set filters.

editor.get_html(false) or editor.get_html() - returns the raw HTML content as it is currently. The same as the editor.get_contentArea().innerHTML property. 
 
 WORKAROUND:
Disable ConvertToXhtml filter in codebehind:
RadEditor1.DisableFilter(EditorFilters.ConvertToXhtml);
Completed
Last Updated: 14 Sep 2021 12:00 by ADMIN
Release Q3 2014
When a document is deleted from the DocumentManager, its selection remains and it could be inserted into the Editor.

video: http://screencast.com/t/LXU1pVkLd
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)