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 10:19 by ADMIN
Release Q2 2015
This causes incorrect behavior. The STYLE tags should be removed along with the get_text method.
The origin of this problem is the behavior of the get_text method of the RadEditor control.

The following workaround can be used as a workaround for this issue. The implemented resolution is related to another logged bug - http://feedback.telerik.com/Project/108/Feedback/Details/119856

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

<script type="text/javascript">
	Telerik.Web.UI.RadEditor.prototype.get_text = function () {
		var $T = Telerik.Web.UI,
			modeEnum = $T.EditModes,
			oContent = "";

		if (this.get_mode() != modeEnum.Html) {
			var oArea = this.get_contentArea();
			if (oArea) {
				oContent = oArea.innerHTML;
				oContent = oContent.replace(/<br>/ig, "\r\n");
				oContent = oContent.replace(/<\/p>/gi, "\r\n");
				oContent = oContent.replace(/&nbsp;/gi, "\s");
				if (this.get_newLineMode() === $T.EditorNewLineModes.Div) {
					oContent = oContent.replace(/<\/div>/gi, "\r\n");
				}

				oContent = oContent.replace(/\s*<div[^>]*style="display:none;"[^>]*>[^>]*>\s*/gi, "");
				oContent = oContent.replace(/\s*<style[^>]*>[^>]*>\s*/gi, " ");

				oContent = oContent.replace(/<\/?[^>]*>/ig, "");
				oContent = oContent.replace(/<!--(.|\s)*?-->/gi, "");
			}
		}
		else {
			oContent = this._getTextArea().value;
			oContent = oContent.replace(/\s*<style[^>]*>[^>]*>\s*/gi, " ");
			oContent = oContent.replace(/<\/?[^>]*>/ig, "");
		}
		return oContent;
	};
</script>
Completed
Last Updated: 14 Sep 2021 10:16 by ADMIN
Release R1 2016
When user adds paragraph with formatting (e.g., Underline), this style is transferred to new lines automatically.

The issue is when these paragraphs are empty. They contain an &nbsp; or <br> which is styled too, although this empty paragraphs should not be formatted until some text is inserted.  
Completed
Last Updated: 14 Sep 2021 10:15 by ADMIN
Release Q3 2015
When adding nested list elements in the content, the user is able to go to parent element, press enter and add a sibling element.
This element, as expected has a br tag that allows user to type text, but deleting this tag causes the list item to be not editable and the user is forced to go to HTML mode to modify the HTML code manually.
Completed
Last Updated: 14 Sep 2021 10:13 by ADMIN
If a RadPane has a scrollable content (it does not fit into its dimensions), under iOS and Android, you should tap and hold on a textbox to start typing in it. If you have a RadComboBox in the same scenario, it is not possible to expand its items under Android Chrome and Opera.

Note: the issue is not reproducible, if that same content is loaded through the RadPane ContentUrl property.
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)
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>
Declined
Last Updated: 01 Sep 2021 06:58 by ADMIN
RadCodeBLock and RadScriptBlock is not able to handle the server tags for all case scenarios, hence RadAjaxManager throws the exception mentioned in the title.
Completed
Last Updated: 13 Aug 2021 12:07 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 13 Aug 2021 12:07 by ADMIN
Completed
Last Updated: 13 Aug 2021 11:49 by ADMIN
Release Q1 2016
Completed
Last Updated: 13 Aug 2021 11:47 by ADMIN
Release Q1 2016
Completed
Last Updated: 13 Aug 2021 11:46 by ADMIN
Release Q1 2016
Completed
Last Updated: 11 Aug 2021 19:26 by ADMIN
ADMIN
Created by: Ivan Zhekov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1
Steps to reproduce:

1) Create a vertical RadMenu with one item only
2) Hover the item

Result: slight displacement
Declined
Last Updated: 10 Aug 2021 15:12 by ADMIN
Created by: Matt
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
1
I am doing a bin deployment on a web site for the following assemblies...

Telerik.Windows.Documents.Core
Telerik.Windows.Zip
Telerik.Windows.Documents.Fixed
Telerik.Windows.Documents.Flow
Telerik.Windows.Documents.Flow.FormatProviders.Pdf
Telerik.Windows.Documents.Spreadsheet
Telerik.Windows.Maths
Telerik.Windows.Documents.Spreadsheet.FormatProviders.OpenXml
Telerik.Windows.Documents.Spreadsheet.FormatProviders.Pdf

I recently used the upgrade wizard, and it successfully updated the versions for these assemblies, but it did not update the version numbers in the Web.config.  I manually removed the version number completely from Web.config, and it seems to work fine.
Declined
Last Updated: 10 Aug 2021 14:06 by ADMIN
Created by: kencox
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
The new scaffolding capabilities in ASP.NET web forms are great for productivity.

I'd like to see Telerik-specific scaffolding that substituted Telerik controls.
Completed
Last Updated: 10 Aug 2021 13:14 by ADMIN
Completed
Last Updated: 04 Aug 2021 12:59 by ADMIN
ADMIN
Created by: Peter Milchev
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Caused by 

https://groups.google.com/a/chromium.org/forum/#!topic/blink-dev/GbVcuwg_QjM/discussion%5B1-25%5D
https://stackoverflow.com/a/45495974
https://stackoverflow.com/a/45746963

Workaround attached
Completed
Last Updated: 27 Jul 2021 15:32 by ADMIN
Release 2021 R3
Created by: Galina
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

Looks like it is a typo in the Telerik code. When I use skin web20 on the page and RadNotification I get exception :

An error occurred processing a web or script resource request. The requested resource 'pTelerik.Web.UI.Skins|Telerik.Web.UI.Skins.Web20Lite.Notification.Web20.css' does not exist or there was a problem loading it.

Note, there is "p" before Telerik namespace. 

Unplanned
Last Updated: 26 Jul 2021 10:44 by ADMIN
Created by: Jason
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2

Telerik,

Respectfully recommending a guide feature for new users for our Application (Something similar to what this website does https://shepherdjs.dev/) Users can essentially step through controls we have on the page and we have a small verbiage/info for them that is easily digestible. 

Would help tremendously on onboarding new users and documenting new features.