Completed
Last Updated: 08 Nov 2019 11:31 by ADMIN
Release R1 2020
From the demo page at Editor when adding a table from the toolbar and setting cellpadding to it from the Table Properties window (got by right click the table and selecting table properties) does not show the set properties only the height and the width gets shown remaining properties do not get shown.

The HTML source shows the property cellpadding being added but not shown in the properties window.
Completed
Last Updated: 18 Oct 2019 13:52 by ADMIN
Release R3 2019 SP1
Created by: Charles Liang
Comments: 0
Category: Editor
Type: Feature Request
0
Improve XSS filtering.
Completed
Last Updated: 06 Nov 2018 17:54 by ADMIN
If misspelled word is coming after scroll bar it is not focusing in IE11, Edge and Chrome.

Can be reproduced in the default demo - https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

Paste the following content 

<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p>a</p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p></p>
<p>risksss</p>

and click on the spell check button. The popup with the suggestions will be positioned outside of the content area.

As a workaround you can switch to DIV content area mode - https://demos.telerik.com/aspnet-ajax/editor/examples/contentareamodediv/defaultcs.aspx
Completed
Last Updated: 02 Sep 2019 15:26 by ADMIN
When using the Microsoft Edge browser with the Editor, you cannot add field values for some form elements. This seems to affect Radio buttons and checkboxes. It is possible that it affects other form elements as well. I also see this same problem when using your demo page https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx.

Edge does not offer the hasLayout capability of Internet Explorer, which selects the form element on click. In Edge you can select a form element as you could do it with a text: https://www.screencast.com/t/mo25Rm1kTSdB. The click selection is not currently supported.
Completed
Last Updated: 01 May 2018 15:13 by ADMIN
Created by: Christian
Comments: 1
Category: Editor
Type: Feature Request
0
Hi,

Several of my clients has requested along the years for a way to insert Descriptions just beneth/under a image in the Editor, i have had to move to CKEditor in some cases and thought i would just give it a try and post this as a feature request.

A demo of this can be seen here,
http://ckeditor.com/

Think what they do is insert a Div under the image object that contains a Description.

Really hoping to see this in the future as i would like to keep third party plugins to a minimum.

Christian
Completed
Last Updated: 11 Nov 2016 09:25 by ADMIN
Steps to reproduce:
1. Write a couple of words: one two three
2. Select the second word two without the spaces around it and delete it
3. You'll see a single space between one and three in Design mode, while they are actually two in HTML mode.
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: 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>
Completed
Last Updated: 20 May 2016 16:24 by ADMIN
The following error is thrown when RadEditor is set in Inline mode with Material skin:
TypeError: view.modesRowContainer(...) is undefined


Workaround:

Sys.Application.add_load(function () {
                var EditorLightweightView = Telerik.Web.UI.Editor.LightweightView;
                EditorLightweightView.prototype.modesRowContainerOriginal = EditorLightweightView.prototype.modesRowContainer;
                EditorLightweightView.prototype.modesRowContainer = function () {
                    return this.modesRowContainerOriginal() || {};
                }
            });

Completed
Last Updated: 29 Nov 2021 08:44 by ADMIN
Workaround: Set Lightweight for RadMenu in web.config:

    <add key="Telerik.Web.UI.Menu.RenderMode" value="lightweight" />
Completed
Last Updated: 20 May 2016 16:03 by Ikbum Kim
ADMIN
Created by: Misho
Comments: 1
Category: Editor
Type: Feature Request
1

			
Completed
Last Updated: 08 Sep 2023 13:11 by ADMIN
Release R2 2023
Currently we are in the process of securing our web sites. we are experiencing issue on Xhtml Validator in RadEditor where it is not properly loading due to mixed content issue. There is no way to redirect to HTTPS instead of HTTP site.

We can reproduce this on Rad Editor Demo site by making site as HTTPS and click on XHTML Validator icon.

https://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

Could you please add that feature?
Completed
Last Updated: 12 Dec 2015 14:48 by ADMIN
Completed
Last Updated: 28 Mar 2019 10:57 by ADMIN
Created by: Mattias Davidsson
Comments: 2
Category: Editor
Type: Feature Request
0
When resizing images in RadEditor design mode using the corner-handles the image should retain its aspect ratio. This works very good in Firefox (v. 41.0.2) out-of-the-box because the browser implements that functionality but not in IE (v. 11.0) or Chrome (46.0) in Windows 8.1 (v 6.3, build 9600).
Completed
Last Updated: 20 Jan 2016 16:32 by ADMIN
Created by: majda
Comments: 1
Category: Editor
Type: Feature Request
0
Did telerik rich text editor check arabic language with the spell checker ?
Completed
Last Updated: 18 Apr 2022 14:45 by ADMIN
Another post appears as "Provide ability to paste/insert images from clipboard/local drive directly into RadEditor" and talks about similar but to date a facility does not exis as I envisage.

When I work with for example a web mail facility like Yahoo Mail I am using an editor like RadEditor to create my email. When I say I want to attach a file this editor assumes that the file will come from my local drive (rather than a Yahoo server). This is what I would like to see as an option for Radeditor image handling - something like a button that says "upload". Clicking on it takes you to a dialogue to simply upload from local into the document. I appreciate that uploading from local can be done with existing Radeditor Image manager but this also offers access to server space that in the case of e.g. web mail is irrelevant and confusing.

In an ideal world I would also like the uploaded document to be automatically associated with the document (email) that it has been loaded into although that can of course be handled manually.



Completed
Last Updated: 11 Jun 2021 14:28 by ADMIN
Currently, by using ExternalDialogsPath property, developers can extend the built-in dialogs by adding the user controls in a local folder. It would be a nice-to-have feature, if these user controls can be also located in a virtual folder.
Completed
Last Updated: 04 Sep 2015 13:24 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: Editor
Type: Feature Request
0
End-users cannot clear class or apply class of block elements (i.e., <p>, <div>, <h1>, etc.,) when a class name already exists. 
1 2 3 4 5 6