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

Won't Fix
Last Updated: 30 May 2016 14:13 by ADMIN
ADMIN
Created by: Vessy
Comments: 1
Category: Editor
Type: Bug Report
0
The value set to the EmptyMessage of the editor floats outside the EDitor if its length exceeds the Editor's width - http://screencast.com/t/rPLVwFVfU
Won't Fix
Last Updated: 19 Jan 2017 09:41 by ADMIN
When a new anchor is created and an anchor name is set via the Hyperlink Manager tool of RadEditor, the 'name' attribute will not be applied under IE7. Under IE8 the specified anchor name is set to a 'submitname' attribute of the anchor element.
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>
Won't Fix
Last Updated: 28 Mar 2016 13:16 by ADMIN
Won't Fix
Last Updated: 08 Apr 2016 12:50 by ADMIN
Rejected with the following description: 

RadEditor performs complex operation in order to manage its content when switching between Design and HTML modes like cloning elements and inserting content in iframe elements. Internet Explorer, however, has some limitations related to that particular operations that prevents the control from preserving the onload attribute (e.g., attributes are not preserved when the iframe is cloned, writing html to an editable iframe doesn't always preserve the event attributes).

In order to handle that scenario you can replace the event attributes with JavaScript events. For example:

                                                                       

<telerik:RadEditor ID="RadEditor1" runat="server" ContentFilters="ConvertToXhtml">
            <Content>
                <html>
                    <head>
                        <script>
	window.onload = function () {
		alert(1);
	}
                        </script>
                    </head>
                    <body >
                        some text
                    </body>
                </html>
            </Content>
        </telerik:RadEditor> 

Note: the ConvertToXhtml filter should be enabled as well.
1 2