Completed
Last Updated: 06 Oct 2016 15:07 by ADMIN
Current workaround is provided in the archive below. It consists of a function override that prevents the attribute loss. Below the workaround is the repro sample that invokes the validation.
Completed
Last Updated: 02 Nov 2016 14:15 by Clintrak_it
Completed
Last Updated: 17 Jan 2022 15:25 by ADMIN
When part of a table from MS Excel is copied and pasted into RadEditor under Edge, the RadEditor inserts an image instead of the html for the table. It inserts <img alt="" src="data:image/png;base64, ... " /> instead of the html.

Steps to reproduce:

Open http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx in MS Edge.On the editor select the html and delete everything.
On the editor select design
Open any Excel file copy a couple of cells
Paste in the Editor
On the editor select html
Instead if html the there is an image tag
<img alt="" src="data:image/png;base64,iVBOR ... YII=" />

With firefox, IE 11 and Chrome the html is pasted. For MS Edge the Image tag is pasted.

Workaround:
<telerik:RadEditor runat="server" ID="RadEditor"></telerik:RadEditor>
<script>   
    Telerik.Web.UI.Editor.Utils.containsHtmlAtClipboard = function(oEvent) {
        var result = oEvent && oEvent.clipboardData && oEvent.clipboardData.getData &&
            oEvent.clipboardData.types && oEvent.clipboardData.types.length &&
            Telerik.Web.UI.Editor.Utils.containsElement(/text\//i, oEvent.clipboardData.types);
 
        return result;
    }
</script>
Declined
Last Updated: 27 Mar 2019 17:41 by ADMIN
Created by: John
Comments: 1
Category: Editor
Type: Bug Report
2
When part of a table from MS Excel is copied and pasted into RadEditor under Edge, the RadEditor inserts an image instead of the html for the table. It inserts <img alt="" src="data:image/png;base64, ... " /> instead of the html. IE 11, Chrome and Firefox all paste the html in the RadEditor but MS Edge pastes as an image. Is there a way for the radeditor to override this so the html is pasted instead of an image?
Completed
Last Updated: 27 Mar 2019 18:10 by ADMIN
You can press Delete or Backspace again to delete the remaining content
Completed
Last Updated: 20 Sep 2016 14:44 by conall
ADMIN
Created by: Marin Bratanov
Comments: 2
Category: Editor
Type: Bug Report
2
			<telerik:RadEditor ID="RadEditor1" runat="server">
				<Content>
				select and delete some of the "th" content, the entire cell element will be deleted instead of its content
					<table>

						<thead>
							<tr>
								<th>th1</th>
								<th>th2</th>
								<th>th3</th>
							</tr>
						</thead>

						<tr>
							<td>1</td>
							<td>2</td>
							<td>3</td>
						</tr>

					</table>
				</Content>
			</telerik:RadEditor>
			<script>
				//workaraound

				Telerik.Web.UI.Editor.DeleteSelectionCommand.prototype.deleteNodeContent = function (node) {
					var utils = Telerik.Web.UI.Editor.Utils;
					if (utils.isTag(node, "td") || utils.isTag(node, "th")) {
						utils.removeChildren(node);
						node.innerHTML = NBSP;
					} else {
						remove(node);
					}
				}
				
				function remove(node) {
					node.parentNode.removeChild(node);
				}
			</script>
Completed
Last Updated: 12 Sep 2016 11:41 by ADMIN
ADMIN
Created by: Niko
Comments: 0
Category: Editor
Type: Bug Report
0
When copying text using the keyboard, the content is not copied. Instead is is marked as deleted and the selection is moved to the end of the selection.
Completed
Last Updated: 16 Sep 2016 13:53 by ADMIN
Finding is stuck to the last possible occurrence and cannot proceed to the next match.
Declined
Last Updated: 21 Mar 2019 10:25 by ADMIN
Created by: Ravi
Comments: 1
Category: Editor
Type: Bug Report
0
Hi Telerik Team,

There is one recent problem we faced when using RadEditor. The bottom line is distorted.

We are using version telerik version ASP.NET AJAX Q2 2016.

Attached is the screenshot of html. 

Declined
Last Updated: 21 Mar 2019 11:53 by ADMIN
Created by: Ravi
Comments: 1
Category: Editor
Type: Bug Report
0
Hi Telerik Team,

There is one recent problem we faced when copy paste from word document to Rad Editor. The spacing between the paragraphs is more than what exists in the word document.

The property we are using while copy paste from document to RadEditor

    radTextEditor.StripFormattingOptions = Telerik.Web.UI.EditorStripFormattingOptions.MSWordNoMargins | Telerik.Web.UI.EditorStripFormattingOptions.ConvertWordLists;

The functionality working fine in IE 11.

We are using version telerik version ASP.NET AJAX Q2 2016.

Also there is a default font of Times New Roman in Edge browser which not in IE 11

Attached is the screenshot of html. 

Please look into this.
Declined
Last Updated: 14 Oct 2016 10:48 by ADMIN
Created by: pranav
Comments: 2
Category: Editor
Type: Bug Report
0
Hi Telerik Team,

There is one recent problem we faced when copy paste of email address doesn't get open in outlook as HREF property is not set in Edge Browser. The functionality working fine in IE 11.

We are using version telerik version ASP.NET AJAX Q2 2016.

Attached is the screenshot of html. 
Unplanned
Last Updated: 28 Jul 2016 14:26 by ADMIN
The following code snippet can be used for modifying the inserted table by the dialog until this is implemented:

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

<script type="text/javascript">
	var commandList = Telerik.Web.UI.Editor.CommandList;
	var replaceTable = commandList._replaceTable;
	commandList._replaceTable = function (table, editor, args) {
		var insertedTable = args.tableToModify; //The new table created by TableWizard dialog which will be inserted
		
		//Here the inserted table could be modified
		insertedTable.style.backgroundColor = "red";

		var oldTable = table; // The table which will be replaced if exists
		replaceTable.call(this, table, editor, args);
	};
</script>
Completed
Last Updated: 05 Aug 2016 14:05 by ADMIN
<telerik:RadEditor ID="RadEditor3" runat="server" EditModes="Design" OnClientLoad="OnClientLoad" RenderMode="Lightweight">
                <Modules>
                    <telerik:EditorModule Name="RadEditorStatistics" Visible="true" Enabled="true"/>
                </Modules>
</telerik:RadEditor>
Completed
Last Updated: 21 Jun 2022 22:34 by ADMIN
When using Table Wizard to insert a new table inside a table cell, the selected table is replaced by the one created from Table Wizard. 

Currently, the workaround is to use the plain InsertTable tool in order to nest tables. 
Completed
Last Updated: 01 Sep 2016 13:34 by ADMIN
The formatting of nested lists is lost when pasting from Word in IE10. The issue is reproducible also in IE8 and I9.
Completed
Last Updated: 17 Jan 2022 10:31 by ADMIN
Having some text and input inside: Highlight it in order to copy and paste leads and the content area will scroll to the top of the content area. Also, you cannot highlight the input in order to copy and paste it. 
Completed
Last Updated: 27 Jul 2016 11:44 by ADMIN
http://localdemos.telerik.com/aspnet-ajax-fixes/editor/examples/trackchanges/defaultcs.aspx


Paste some content in the Editor
Expected: The pasted content is displayed and tracked

Actual: Nothing is pasted

Workaround:
<telerik:RadEditor ID="RadEditor1" runat="server" EnableTrackChanges="true">
	<Content>
		<p>test</p>
		<p>test</p>
	</Content>
</telerik:RadEditor>

<script type="text/javascript">
	if (Telerik.Web.Browser.edge) {
		var editorPrototype = Telerik.Web.UI.RadEditor.prototype;
		var origKeydownHandler = editorPrototype._onKeyDown;
		editorPrototype._onKeyDown = function (ev) {
			var shortCut = this.get_shortCutManager().isShortCutHit(ev);
			if (!shortCut || shortCut.get_name() != "Paste") {
				origKeydownHandler.call(this, ev);
			}
		}
	}
</script>
Completed
Last Updated: 01 Jul 2016 04:57 by ADMIN
Currently, the font family will not be passed to the Editor content. It's reproducible when loading tools from xml file. Possible workaround is to use ContentAreaCssFile to set such style or on the OnClientLoad event:

    <script>
        function OnClientLoad(sender, args) {
            sender.get_contentArea().style["font-family"] = "Arial, Verdana, Tahoma";
        }
    </script>
Unplanned
Last Updated: 07 Jun 2016 11:01 by ADMIN
ADMIN
Created by: Joana
Comments: 0
Category: Editor
Type: Feature Request
0
Currentluy, any content with Asian characters is not tracked.
Completed
Last Updated: 24 Jun 2016 13:05 by ADMIN
Having multiple paragraphs that are formatted with color and font-size as inline styles, selecting them and applied font-size by using RealFontSize tool causes these issues:

1. Only first paragraph is properly decorated;
2. Second paragraph is stripped from any inline styles at all;
3. The next paragraphs stay without any changes applied.


Possible workaround is to disable the ConvertFontToSpan filter:

RadEditor1.DisableFilter(EditorFilters.ConvertFontToSpan);