Completed
Last Updated: 16 Sep 2016 11:19 by Andreas
http://demos.telerik.com/aspnet-ajax/editor/examples/contentareamodediv/defaultcs.aspx

1. Delete the content
2. Choose AutoResizeHeight from the Configurator

Expected: The contentarea's height equals its wrapper
Completed
Last Updated: 15 Sep 2016 08:53 by ADMIN
Completed
Last Updated: 15 Sep 2016 08:41 by Akinori
http://demos.telerik.com/aspnet-ajax/editor/examples/overview/defaultcs.aspx

       1. Insert the following html:
<div style="float: left;">
<img alt="" src="/aspnet-ajax/Editor/images/UserDir/Marketing/Tokyo.png" />
</div>

        2. Click the image and update it via ImageManager

Expected:

<div style="float: left;">
<img alt="" src="/aspnet-ajax/Editor/images/UserDir/Marketing/upload_100.png" />
</div>

Actual: 

<div style="float: left;">
</div>
<img alt="" src="/aspnet-ajax/Editor/images/UserDir/Marketing/upload_100.png" />
Won't Fix
Last Updated: 02 Sep 2016 15:42 by ADMIN
Declined
Last Updated: 02 Sep 2016 11:57 by ADMIN
RadScheduler Server-side PDF Export does not support Lightweight render mode, as specified in the respective help article:
http://docs.telerik.com/devtools/aspnet-ajax/controls/scheduler/export/pdf/overview.html
Completed
Last Updated: 02 Sep 2016 07:02 by ADMIN
The Image Map Dialog is not rendered correctly because of a failure of the CSS reset. There is a margin-top attribute which is set with 15px value instead of 0.

Possible resolutions:
 1. Setting another Skin for the RadEditor control;
 2. Setting a custom stylization for the dialogs, which fixes the margin issue. For this approach you can test this example setup along with the provided DialogStyle.css file:

<telerik:RadEditor ID="RadEditor1" runat="server" 
	DialogsCssFile="~/Styles/DialogStyle.css">
</telerik:RadEditor>

More information about the DialogsCssFile property: http://www.telerik.com/help/aspnet-ajax/editor-dialogscssfile.html
Completed
Last Updated: 01 Sep 2016 15:38 by ADMIN
ADMIN
Created by: Pavlina
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
1

			
Completed
Last Updated: 30 Aug 2016 08:32 by ADMIN
Workaround:

<script>
    var $ = $telerik.$;
    Telerik.Web.UI.RadMenuItem.prototype._doAriaFocus = function () {
        var menu = this.get_menu();
        var menuId = menu.get_id() + "_active";

        $(this.get_element()).attr("id", menuId);
        $(menu._getMainElement()).attr("aria-activedescendant", menuId);
    }
</script>
Completed
Last Updated: 15 Aug 2016 10:25 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
The NewLine command behave inconsistently across browsers and causes different incorrect content generation in IE, Chrome and Safari.

 - In IE - New lines are added, but the cursor stays in the initial/first line. This issue also causes an performance problems when typing and pressing Enter with regular speed.

 - In Chrome - Pressing Enter causes mixed content of tracked and not-tracked text to appear without toggling the state of the Track Changes. Also, adds an empty INS tag in from of the new line.

 - In Safari - Adds an empty INS tag in from of the new line.


For the time being you can incorporate the JavaScript code from the following example:

<telerik:RadEditor runat="server" ID="RadEditor1" EnableTrackChanges="true">
	<Tools>
		<telerik:EditorToolGroup>
			<telerik:EditorTool name="AcceptTrackChange" text="Accept Track Change" />
			<telerik:EditorTool name="RejectTrackChange" text="Reject Track Change" />
			<telerik:EditorTool name="AcceptAllTrackChanges" text="Accept All Track Changes" />
			<telerik:EditorTool name="RejectAllTrackChanges" text="Reject All Track Changes" />
			<telerik:EditorTool name="EnableTrackChangesOverride" text="Enable Track Changes Override" />
		</telerik:EditorToolGroup>
	</Tools>
</telerik:RadEditor>

<script type="text/javascript">
	(function () {
		var $E = Telerik.Web.UI.Editor;
		var utils = $E.Utils;
		var isTypingKey = utils.isTypingKey;
		utils.isTypingKey = function (e) {
			return e.keyCode != 13 && isTypingKey(e);
		}

		var extractFrom = $E.InsertParagraphCommand.prototype.extractFrom;
		$E.InsertParagraphCommand.prototype.extractFrom = function (cursor, container) {
			var newElement = extractFrom.call(this, cursor, container);
			if (!this.get_editor().get_enableTrackChanges() || utils.isTextNode(cursor.nextSibling)) return newElement;
			$telerik.$(newElement).find("*").each(function (index, item) {
				if ($E.TrackChangesUtils.isTrackChangeElement(item)) {
					if (utils.isTag(item, "ins") || utils.isTag(item, "del")) {
						utils.removeNode(item);
						return;
					}
					$E.TrackChangesUtils.removeNodeTracking(item);
				}
			});
			return newElement;
		}
	}());
</script>

Completed
Last Updated: 11 Aug 2016 13:47 by A
Completed
Last Updated: 28 Jul 2016 13:42 by Vinod
Created by: Vinod
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When the data is initially grouped and later grouping is collapsed, the group does not expand on click again.
The class rgExpand does not change to rgCollapse class.

It works with Telerik.Web.UI.dll version 2014.2.618.40 (release 1/14/2016?)

However, when we upgraded to 2016.2.504.40 (release 5/9/2016?), it is stuck in "Collapse" mode. Cannot expand again in when clicked on the arrow.
Declined
Last Updated: 28 Jul 2016 13:29 by ADMIN
ADMIN
Created by: Maria Ilieva
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
Declined
Last Updated: 28 Jul 2016 11:38 by ADMIN
Created by: Robert
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
6
We need the exactly the same control that the guys over in Silverlight have:

http://www.telerik.com/products/silverlight/expressioneditor.aspx

I am in desperate need of this control in the ASP.Net platform.
Completed
Last Updated: 26 Jul 2016 12:37 by ADMIN
Declined
Last Updated: 26 Jul 2016 12:34 by ADMIN
ADMIN
Created by: Svetlina Anati
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
Declined
Last Updated: 26 Jul 2016 12:32 by ADMIN
ADMIN
Created by: Peter
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
4

			
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.