Completed
Last Updated: 10 Aug 2021 15:39 by ADMIN
Hi,

Browser : IE11
Telerik version : 2013.3.1114.40 - Q3 2013 release

Steps to reproduce the issue :
1 . Copy ordered list from MS WORD 2010
2.  Paste it in RadEditor
3.  View html markup in radeditor

Each text within LI tag is wrapped by P tag and this issue occurs only in IE11 browser.

Ideally ,p tags should be stripped off.

Looking forward to your response.

Thanks in advance,
Anthony




Completed
Last Updated: 18 Nov 2014 14:20 by Elena
When the commands "Insert Date", "Insert Time" and "Insert Symbol" are used, the content that is inserted via these commands is not cleared upon clicking Undo.
Completed
Last Updated: 07 Jan 2015 10:55 by ADMIN
Such feature will be a convenient availability for developers to create document templates and easy add HTML specified headers and footers 
Completed
Last Updated: 12 Jun 2015 06:30 by ADMIN
The following commands does not work with the Format Painter tool.

   1. underline 
   2. strikethrough 
   3. back color
   4. fore color
   5. bold
Completed
Last Updated: 17 Jan 2014 16:08 by ADMIN
Since document.selection is no longer supported in IE11 all occurrences in the code of RadEditor need to be updated accordingly.
Completed
Last Updated: 18 Nov 2014 13:27 by Elena
The FormatPainter command is not applying Bold, Italic and Underline formatting to the content in Firefox.

In Internet Explorer only underline is not applied.
Declined
Last Updated: 11 Mar 2015 11:10 by ADMIN
ADMIN
Created by: Misho
Comments: 1
Category: Editor
Type: Feature Request
1

			
Completed
Last Updated: 13 Jan 2014 10:41 by ADMIN
Setting a content as the following one:

<html>
    <head>
    </head>
    <body>
        <h2>content</h2>
    </body>
</html>

After switching the editor mode and creating a post back, a JavaScript error is thrown in the browser console. 


A possible resolution is overriding the detachEvents methods of the editor with the provided ones. You can use the following setup as example, note that the script tag should be after the RadEditor declaration to override the methods correctly:

<telerik:RadEditor runat="server" ID="RadEditor1" ContentFilters="none">
    <Content>
        <html>
            <head>
            </head>
            <body>
                <h2>content</h2>
            </body>
        </html>
    </Content>
</telerik:RadEditor>
<asp:Button Text="text" runat="server" OnClick="Unnamed_Click" />

<script type="text/javascript">
    Telerik.Web.UI.Editor.NodesTracker.prototype.detachEvents = function () {
        if (!this.isActive) return;
        var contentArea = this.editor.get_contentArea();
        this.editor.remove_submit(this.cleanUpDelegate);
        try {
            $telerik.removeHandler(contentArea, "keyup", this.keyupDelegate);
            $telerik.removeHandler(contentArea, "keydown", this.keydownDelegate);
        }
        catch (ex) { }
        $telerik.removeExternalHandler(contentArea, "paste", this.pasteDelegate);
    }

    Telerik.Web.UI.Editor.EmptyWhitespaceCharTracker.prototype.detachEvents = function () {
        var contentArea = this.editor.get_contentArea();
        this.editor.remove_submit(this.cleanUpDelegate);
        try {
            $telerik.removeHandler(contentArea, "keypress", this.cleanUpDelegate);
        }
        catch (ex) { }
        $telerik.removeExternalHandler(contentArea, "mousedown", this.cleanUpDelegate);
        $telerik.removeExternalHandler(contentArea, "touchstart", this.cleanUpDelegate);
    }
</script>
Declined
Last Updated: 07 Jun 2016 11:41 by ADMIN
The button should be added at the top right corner of the formatted code snippet.

It should use JavaScript only and not an applet so that content generated from RadEditor can be re-used in other pages.

Ideally, it will copy plain text with preserved indentation to the clipboard.

Whether the button will be added should be controlled via a checkbox in the Format Code Block dialog. Leave your comment whether you want it checked by default (which can be considered a breaking change).
Completed
Last Updated: 21 Aug 2014 13:42 by ADMIN
This issue is causing inconvenient experience when the new line mode is set to add paragraphs and the cursor is set right after the link element.
Completed
Last Updated: 27 Jul 2016 11:50 by ADMIN
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

1. Delete the content and type some text

2. Insert a horizontal rule

3. Once you click at the typed text you cannot go to the next line in IE, additional text cannot be inserted in FF, in Chrome when you try to type some text it is inserted at the first line
Completed
Last Updated: 03 Nov 2021 15:26 by ADMIN
FIX: The toolbar commands don't fire when the editor is in iframe and has hidden parent in IE11. The content area is disabled too.
Completed
Last Updated: 08 Jun 2016 15:31 by ADMIN
Created by: ChrisS
Comments: 1
Category: Editor
Type: Feature Request
3
We would like the image manager to be able to support:

max-width
min-width
max-height
min-height

and produce output similar to:

<img src="/randomlink.png" style="width : 100%; height : auto; max-width : 960px; min-width : 200px;" />

This way we can use the RadEditor to produce responsive content.
Completed
Last Updated: 21 May 2014 15:14 by ADMIN
This method is used to fix some layout issues of the editor. For each call of this method, the editors content grows with one BR element. Due to that the content area is getting with additional lines.

A possible resolution is incorporating the following override that fixes the onParentNodeChanged method: 

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

<script type="text/javascript">
	var oldOnParentNodeChanged = Telerik.Web.UI.RadEditor.prototype.onParentNodeChanged;

	Telerik.Web.UI.RadEditor.prototype.onParentNodeChanged = function () {
		oldOnParentNodeChanged.call(this);

		if (this.get_filtersManager().getFilterByName("MozillaRemoveLastBr")) {
			this.get_filtersManager().getFilterByName("MozillaRemoveLastBr").getHtmlContent(this.get_contentArea());
		}

	};
</script>

Unplanned
Last Updated: 07 Jun 2016 07:53 by ADMIN
This would be needed in cases when the developers desire to create a logic which accepts all changes on Client-side without alerting any messages to the user. 

For the time being you can use the following example have more control over the Track Changes feature on the client:

 <telerik:RadEditor ID="RadEditor1" runat="server" EnableTrackChanges="true">
     <Content>
         <p>Some text</p>
     </Content>
     <TrackChangesSettings CanAcceptTrackChanges="true" />
 </telerik:RadEditor>

 <telerik:RadButton runat="server" ID="RadButton1" AutoPostBack="false" 
     OnClientClicked="OnClientClicked" Text="Accept Changes!"/>

 <script type="text/javascript">
     function OnClientClicked(sender) {
         var editor = $find("<%= RadEditor1.ClientID  %>");
         var trackChanges = Telerik.Web.UI.Editor.TrackChanges;

         trackChanges.setEditor(editor);

         /* use acceptAllChanges() method to prompt the user 
         whether to accept or not accept the changes */

         //trackChanges.acceptAllChanges();

         /* use acceptAllChangesSilently() method to directly 
         accept changes without notifying the user */

         trackChanges.acceptAllChangesSilently();
     }
 </script>
Completed
Last Updated: 24 Jul 2015 13:43 by ADMIN
If you set anchors in html content and additional put some HTML comments, under IE7 the hrefs will be placed as absolute.

For example the following HTML:

<div id="htmlcontent">
    <div>
        <!-- comment beginning -->
        <a href="/relativePath/ToALink">
            <img alt="" src="relativePath/ToMyImage/image.gif" />
        </a>
    </div>
    <!-- /another ending comment -->
</div>

Will be transformed to this one:

<DIV id=htmlcontent>
<DIV><!-- comment beginning --><A href="http://localhost:52771/relativePath/ToALink"><IMG alt="" src="http://localhost:52771/relativePath/ToMyImage/image.gif"> </A></DIV><!-- /another ending comment --></DIV>
Completed
Last Updated: 15 Mar 2016 10:52 by Pankaj
For example the Bold, Italic, Underline and Strike-trough commands are not accepted by invoking the AcceptTrackChanges() method. After the post back, the track changes stylization is still the same and the attributes set from the feature (cite, author, timestamp etc.) are not stripped. 

A possible workaround is using the corresponding method via the Client-side API. To do that you can use this example JavaScript method:

function acceptAllChanges() {
    var editor = $find("<%= RadEditor1.ClientID %>");
    var trackChanges = Telerik.Web.UI.Editor.TrackChanges;

    trackChanges.initialize(editor);
    trackChanges.acceptAllChangesSilently();
}

Note that you should get the correct editor object and pass it as an argument in the initialize() method's overload. 
Declined
Last Updated: 07 Jun 2016 11:23 by ADMIN
Created by: Brett Zucker
Comments: 1
Category: Editor
Type: Feature Request
1

			
Completed
Last Updated: 13 Aug 2021 10:53 by ADMIN
When multiple paragraphs are set into the content and selected, the font name tool of the StyleBuilder dialog is merging all f them into one span.
This causes unexpected behavior and incorrect text manipulation. 
Completed
Last Updated: 28 Feb 2022 14:49 by ADMIN
This problem causes the handles of the widget to be rendered at an incorrect position. The resizable widget should dispose or repaint itself, when the image is being dragged around the content. 

Possible workaround is to reselect the element on the dragend event of the editor's content. You can follow this example setup:

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

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		editor.attachEventHandler("ondragend", function (e) {
			var selElm = editor.getSelectedElement();
			if (selElm && selElm.tagName && selElm.tagName === "IMG") {
				editor.selectElement(selElm);
			}
		});
	}
</script>