Completed
Last Updated: 31 Oct 2014 13:58 by Elena
Declined
Last Updated: 19 Mar 2015 09:02 by ADMIN
ADMIN
Created by: Rumen
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Completed
Last Updated: 16 Apr 2015 09:50 by Elena
Completed
Last Updated: 09 Jul 2015 10:33 by Ioish
Completed
Last Updated: 26 Jul 2016 12:37 by ADMIN
Completed
Last Updated: 12 Jun 2015 12:16 by ADMIN
ADMIN
Created by: Peter
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
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

			
Completed
Last Updated: 17 Mar 2015 11:37 by ADMIN
ADMIN
Created by: Slav
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Completed
Last Updated: 17 Mar 2015 13:24 by ADMIN
Declined
Last Updated: 13 Aug 2014 12:47 by ADMIN
Completed
Last Updated: 17 Apr 2015 07:02 by Elena
Unplanned
Last Updated: 10 Mar 2014 12:30 by ADMIN
Unplanned
Last Updated: 10 Mar 2014 17:48 by Chris
ADMIN
Created by: Hristo Valyavicharski
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2

			
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>
Completed
Last Updated: 14 Jun 2021 16:07 by ADMIN
Created by: Michael
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Problem:If I used master page and put there RadSkinManager how can I used designer in page inherit from the master ?
Solution:I can only use the designer in the page where the control is situated.
Suugestion:Make proxy for RadSkinManager like RadAjaxManagerProxy
Completed
Last Updated: 20 Apr 2015 13:37 by ADMIN
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

			
Completed
Last Updated: 02 Oct 2014 13:04 by Antonio Bakula
When a user works with large content in the editor and pastes a word in the end of it, the page and content area are scrolled to the top. This causes an inconvenience for the editing behavior, the user should scroll down to continue typing or editing.
Completed
Last Updated: 24 Jun 2014 08:50 by ADMIN
Button single click becomes disabled permanently if a validation error is detected. After satisfying the validator conditions the button doesn't get enabled and it is not possible to post back the page.