Completed
Last Updated: 14 Nov 2014 14:25 by Elena
When a list is created in the editor. Copy and paste of this list does not behave as expected.
Completed
Last Updated: 04 Sep 2019 15:43 by ADMIN
If a list is created and every bullet is with different stylization. Stripping all formatting is causing the content to be inserted into one bullet and the styles are not correctly stripped. 
Won't Fix
Last Updated: 11 Jul 2016 17:22 by ADMIN
The Advanced Mode (embed code) textbox in the Insert External Video dialog is always readonly and you cannot put the code in it.

In the meantime you can use the following workaround that will access the textbox and remove the readonly attribute:

	<telerik:RadEditor ID="RadEditor1" runat="server" OnClientCommandExecuted="OnClientCommandExecuted">
		<Tools>
			<telerik:EditorToolGroup>
				<telerik:EditorTool Name="InsertExternalVideo" />
			</telerik:EditorToolGroup>
		</Tools>
	</telerik:RadEditor>
	<script type="text/javascript">
		function OnClientCommandExecuted(sender, args)
		{
			if (args.get_commandName() == "InsertExternalVideo")
			{
				var extVideoDialog = sender.get_dialogOpener()._dialogContainers["InsertExternalVideo"];
				if(extVideoDialog){
					extVideoDialog.add_pageLoad(editTextbox);
				}
			}
		}

		function editTextbox(sender, args)
		{
			sender.get_contentFrame().contentWindow.document.getElementById("embedCode").removeAttribute("readonly");
			sender.remove_pageLoad(editTextbox);
		}
	</script>
Completed
Last Updated: 14 Nov 2014 14:46 by Elena
The MS Sans Serif font is rendered as Arial in the web environment. The correct one is Sans Serif.

Possible solution is to use the following example setup, the logic of which is to replace the MS Sans Serif font to the Sans Serif one:

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

</telerik:RadEditor>
<script type="text/javascript">
	function OnClientLoad(editor, args) {
		var fontNames = editor.get_fontNames();
		var fontIndex = fontNames.indexOf("MS Sans Serif");
		if (fontIndex >= 0) {
			fontNames[fontIndex] = "Sans Serif";
		}
	}
</script>
Declined
Last Updated: 14 Sep 2021 10:04 by ADMIN
When an image in the list view of the image manager is dropped outside the dialog, a duplicate of this image is stuck to the cursor. After selecting another image, the ghost image remains and overlays the upload window.
Completed
Last Updated: 22 Aug 2014 13:49 by ADMIN
Newly created areas in the ImageMapEditor dialog cannot be modified and controlled properly by end-users.
Completed
Last Updated: 14 Nov 2014 15:00 by Elena
When a RadEditor's toolbar mode is set to RibbonBar, its left and right border disappear. 

Possible solutions are to set custom CSS styles that fixes the resizing issue under IE11:

Approach 1:
.RadRibbonBar.RadRibbonBar_<SkinName> {
 margin:1px;
}

Approach 2:
.reToolbarWrapper {
 padding-left:1px;
 padding-right:1px;
}
Completed
Last Updated: 14 Nov 2014 15:06 by Elena
When the modules are removed from the code behind, the editor's content are is set with higher height value, than expected. This causes the editor's layout to break. 

Possible resolution is to attach a custom Client-side function on the OnClientLoad event of the editor, which invokes the onParentNodeChanged() method. Please follow the following example setup:

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

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		editor.onParentNodeChanged();
	}
</script> 
Won't Fix
Last Updated: 16 Aug 2016 05:55 by ADMIN
Currently the &quot; entity is converted to a single quote under Chrome or Firefox, when ConvertToXhtml filter is enabled and the entity is placed in the value of an HTML attribute, for example href.
Completed
Last Updated: 14 Sep 2021 10:02 by ADMIN
Release Q2 2014
When the RadEditor's dialogs are sit to LightWeight rendering mode and the CDN is enabled a JavaScript error is being thrown in the browser's console
Completed
Last Updated: 04 Dec 2013 08:52 by ADMIN
When the RadEditor is set to ContentAreaMode="Div" mode, opening the Find And Replace dialog and triggering the ReplaceAll functionality is throwing a javaSCript error.

A possible workaround is using the provided FindAndReplace.ascx user control in the attached sample project as external dialog. For more information about this approach you can follow this online demo:
http://demos.telerik.com/aspnet-ajax/editor/examples/externaldialogspath/defaultcs.aspx
Completed
Last Updated: 17 Nov 2014 09:24 by Elena
The duplicated attributes breaks the embedded flash objects, when their HTML content is exported into an actual document.

A possible resolution is to enable the ConvertToXhtml filter.
Declined
Last Updated: 07 Nov 2013 16:36 by Bill
Created by: Bill
Comments: 2
Category: Editor
Type: Bug Report
0
With RadEditor for AJAX Version 2013 Q3 it is not possible to edit tables in Design view.  

Clicking within a table seems to cause the editor to lose keyboard focus, the cursor is not visible.

The problem is reproducible on the Telerik WYSIWIG Editor demo page.
Declined
Last Updated: 17 Mar 2015 08:42 by Elena
Step to reproduce:
1. Open Editor Demo in Chrome and change the  font size in the developer console (the F12 button) for the text;
2. enter some text separated by paragraphs (e.g. 
“Test

Test”)
3. Put the cursor before the second “Test” text and press the Backspace button on the keyboard.

Actual result:
The size of the text has been changed.

Expected result:
The size must be the same as it was before the Backspace button was clicked.

Notes:
The issue reproducible only in Chrome.
Completed
Last Updated: 19 Nov 2013 11:23 by ADMIN
Currently when the accessible UI in RadEditor is enabled, borders appear around the icons of the tools and the icons themselves are displaced.
Completed
Last Updated: 09 Jun 2015 16:10 by ADMIN
When this is happening the editor is unavailable for editing and the button for disabling this mode is also unavailable.

A possible resolution is to use the Form Template option of the EditFormSettings property and set a RadEditor control with the following function attached to the OnClientCommandExecuted event:

function OnClientCommandExecuted(editor, args) {
	var commandName = args.get_commandName();
	if (commandName === "ToggleScreenMode") {
		var isFullScreen = editor.isFullScreen();
		var modalExtender = $telerik.$("#modalDivId_<%= RadGrid1.ClientID %>");

		if (isFullScreen)
			modalExtender.hide();
		else
			modalExtender.show();
		}
	}


Also, this happens with simple DOM elements set with fixed position. The following workaround fixes the Full Screen of  the RadEditor control in all similar cases when elements are overlaying. 

<telerik:RadEditor runat="server" ID="RE1" OnClientCommandExecuted="OnClientCommandExecuted">
</telerik:RadEditor>

<script type="text/javascript">
	function OnClientCommandExecuted(editor, args) {
		if (args.get_commandName() === "ToggleScreenMode") {
			var editorElement = editor.get_element();
			if (editor.isFullScreen()) {
				editorElement.style.position = "absolute";
				editorElement.style.zIndex = "100000";
			} else {
				editorElement.style.position = "";
				editorElement.style.zIndex = "";
			}
		}
	}
</script>
Completed
Last Updated: 22 Nov 2013 11:21 by ADMIN
Repro steps:

1) In Chrome, visit http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx
2) Click on ImageManager, FlashManager, MediaManager

Note the small size of the spawned window.
Completed
Last Updated: 26 May 2014 13:43 by sitefinitysteve
Created by: sitefinitysteve
Comments: 11
Category: Editor
Type: Feature Request
0
User is able to add this to the radeditor with allowscripts=false...granted not a script but CLEARLY gaming the system.  It shouldn't be up to us to write custom filters to handle these things, it should be native and tested in the editor itself.


<h1>TROLOLOLOLOLOL</h1><meta http-equiv="refresh" content="1;url=http://bit.ly/1bJjrjr" />
<fk></fk>
Completed
Last Updated: 17 Nov 2014 11:41 by Elena
When some text is pasted in the content of the editor and the ContentAreaMode="Div" property I set, the cursor should be after the pasted content. 

A possible resolution is changing the ContentAreaMode to iframe.
Completed
Last Updated: 27 Jul 2016 11:48 by ADMIN
The paragraph is still displayed under the list element in IE8 for Windows XP when the following is performed:

1. The HTML below is placed in a RadEditor in HTML mode;
<ul>
    <li>This is line 1</li>
</ul>
<p>This is line 2</p>

2. The editor is switched in Design mode;

3. The paragraph is incorrectly joined with the list element by placing the cursor at the start of the paragraph and pressing the Backspace key;

The issue can be avoided by bringing back the old behavior of the RadEditor's commands as described in this help article: http://www.telerik.com/help/aspnet-ajax/editor-inline-and-block-commands-behavior-change.html.