Won't Fix
Last Updated: 02 Sep 2016 15:42 by ADMIN
Completed
Last Updated: 26 Sep 2014 15:54 by Frank
This issue causes inconvenience among users. Block elements in the content cannot be edited properly when used in the RadEditor.

You can workaround this problem by overriding the setActive method of the RadEditor's object:

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

<script type="text/javascript">
	Telerik.Web.UI.RadEditor.prototype.setActive = function () {
		var $T = Telerik.Web.UI;

		if (this._emptyMessageContainer) this._hideEmptyMessage();

		if ($telerik.isIE && this.getSelection().isControl()) return;

		var curArea = this.get_mode() == $T.EditModes.Html ? this._getTextArea() : this.get_contentArea();

		if ($telerik.isIE) {
			var activeElement = this.get_document().activeElement;
			if ((activeElement && activeElement == curArea) ||
			$telerik.$.contains(curArea, activeElement)) {
				return;
			}
		}

		if (curArea && curArea.setActive) curArea.setActive();
	};
</script>
Declined
Last Updated: 16 Mar 2015 11:48 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 08 Oct 2014 12:16 by ADMIN
ADMIN
Created by: Rumen
Comments: 7
Category: UI for ASP.NET AJAX
Type: Feature Request
9
TypeScript declarations for the ASP.NET AJAX controls will be of great help for developing projects in TypeScript.

See this forum thread for more information: http://www.telerik.com/forums/typescript-declarations
Declined
Last Updated: 02 Oct 2015 15:10 by ADMIN
The links in Preview mode should not be opened at all or at least opened automatically in a new window, so that user could preserve its content.

Possible resolution is to invoke the setTargetsForPreview method on the OnClientLoad event of the editor:

<telerik:RadEditor runat="server" ID="RadEditor1"
	 EditModes="Preview" OnClientLoad="OnClientLoad">
	<Content>
		<a href="http://www.telerik.com">Link</a>
	</Content>
</telerik:RadEditor>

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		Telerik.Web.UI.Editor.Utils.setTargetsForPreview(editor);
	}
</script>
Completed
Last Updated: 25 Mar 2016 06:39 by ADMIN
This behavior stops the user to be able o insert these elements without being tracked
Completed
Last Updated: 14 Sep 2021 09:42 by ADMIN
Release Q2 2015
The link manager provides approach to add anchors with unique ID and name. The name should be inserted dynamically in a collection shown in the "Existing Anchor" drop down. For some reason this dropdown is never populated without reloading the RadWindow.

Possible resolution is forcing the dialog to reload on each show:

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

<script type="text/javascript">
    function OnClientCommandExecuted(editor, args) {
        var command = args.get_commandName();

        if (command === "LinkManager") {
            var dialogOpener = editor.get_dialogOpener();
            var linkManager = dialogOpener._dialogContainers[command];
            linkManager.add_show(function () {
                linkManager.reload();
            });
        }
    }
</script>
Completed
Last Updated: 10 Oct 2014 14:59 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0
This property will define the MaxJsonLenght size.
Completed
Last Updated: 26 Jul 2016 08:41 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Short version:  needed for IE browsers and overlaying external plugins such as PDF

To overlay external content such as PDF in some browsers, we need just Z-index. In other, we need an iframe inside the overlay.
Completed
Last Updated: 02 Nov 2021 14:35 by ADMIN
This issue causes some content added by user to be not included when Track Changes are accepted. This is because the text is inserted in the INS tag, which is determined as deleted text by the feature's logic.
Completed
Last Updated: 04 Jul 2019 07:47 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When trying to load a light-weight skin from external assembly (other than Telerik.Web.UI.Skins), the path to the files is not resolved correctly, hence no resource is loaded.
Declined
Last Updated: 11 Jun 2021 11:55 by ADMIN
Created by: Raimund
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
a radmenu  with input-fields would be very usefull
this would work the same way like a configuration-menu
Completed
Last Updated: 14 Sep 2021 10:20 by ADMIN
Release Q2 2014 SP1
This problem causes link and other elements to be added in the top of the content and not to modify the actual selected element. 
Completed
Last Updated: 14 Sep 2021 09:46 by ADMIN
Release Q3 2014
This issue is happening due to the insertion of the /n character in the comment editable area. This character breaks the logic of some content filters and they are replacing the greater than and less than characters in the HTML mode. 

Possible workaround is to disable the ConvertCharactersToEntities filter:

C# example:
RadEditor1.DisableFilter(EditorFilters.ConvertCharactersToEntities);

VB example:
RadEditor1.DisableFilter(EditorFilters.ConvertCharactersToEntities)
Declined
Last Updated: 09 Apr 2014 11:20 by ADMIN
Created by: Germain
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 02 Nov 2021 14:28 by ADMIN
This issue causes incorrect user experience. The users are forced to do multiple actions to replace a word while using the Track Changes feature.
Completed
Last Updated: 07 Jun 2016 11:06 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1
The image constrain tool in the image properties dialog is loaded as disabled by default. Mostly users easily can enable it the whole time, but the better user experience is this tool to be enabled by default. This way the user will be able directly to manipulate the image size without breking the correct proportions. 
Completed
Last Updated: 28 May 2014 13:22 by ADMIN