Won't Fix
Last Updated: 02 Jun 2017 17:03 by ADMIN
A workaround is to add the settings in the markup, for example:

<telerik:RadPersistenceManager runat="server" ID="RadPersistenceManager1">
	<PersistenceSettings>
		<telerik:PersistenceSetting ControlID="RadTileList1" />
	</PersistenceSettings>
</telerik:RadPersistenceManager>
<telerik:RadTileList runat="server" ID="RadTileList1">
</telerik:RadTileList>
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: 14 Sep 2021 10:20 by ADMIN
Release Q2 2015
Completed
Last Updated: 19 Nov 2014 11:58 by ADMIN
ADMIN
Created by: Rumen
Comments: 5
Category: UI for ASP.NET AJAX
Type: Feature Request
4
Hi guys, 

In Q3 2014, we will introduce a new FormView-like control for ASP.NET AJAX called DataForm. To see what FormView looks like, visit the MSDN article at http://bit.ly/1pZd0RT.

What additional features (not present in FormView) would you like to see in this new control?

Best regards,
Rumen
Completed
Last Updated: 17 May 2016 13:17 by ADMIN
Won't Fix
Last Updated: 07 Aug 2015 15:00 by ADMIN
Completed
Last Updated: 01 Oct 2015 07:14 by Rumen Jekov
ADMIN
Created by: Genady Sergeev
Comments: 5
Category: UI for ASP.NET AJAX
Type: Feature Request
11
RadSpreadSheet control that can open and visualize excel files. It should also support edit and common operations.
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: 11 Aug 2014 03:08 by Tracey
ADMIN
Created by: Ianko
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Due to this problem end-users cannot manipulate the newly added areas and use the dialog properly. 

A possible workaround is to force the IE10 compatibility mode of the browser by adding the following meta tag in the head element of the page.
<meta http-equiv="X-UA-Compatible" content="IE=10">
Completed
Last Updated: 08 Oct 2015 14:09 by Dietmar
The selected image in SharePoint RadEditor's Image Manager dialog is not displayed when edited in the Image Editor in IE when the property ImageManagerViewMode of the editor is set to Grid.
Won't Fix
Last Updated: 15 Jun 2021 14:38 by ADMIN
Created by: sitefinitysteve
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
3
Certain controls just add bloat to a page.  Like the RadListView is a GREAT control to use inplace of the asp Repeater, but I find I often don't use it (or limit it's use) because it brings down 99.9% useless client scripts.  Most of the time, especially in Sitefinity its a server-side render-only control.  Just used to show data...we don't need ANY client manipulation.
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: 07 Aug 2015 07:14 by ADMIN
The issue is due to failing recalculation logic of the iframe content area. 

To resolve the issue you can use a RadEditor control with ContentAreaMode="Div" to render the content area as a DIV element, instead iframe.  

If the iframe mode is needed, you can use the following workaround to fix the content cell and the iframe appearance. 

<telerik:RadEditor ID="RadEditor1" runat="server" height="50px" OnClientLoad="OnClientLoad">
	<Tools>
		<telerik:EditorToolGroup>
			<telerik:EditorTool Name="Bold" />
			<telerik:EditorTool Name="Italic" />
			<telerik:EditorTool Name="Underline" />
		</telerik:EditorToolGroup>
	</Tools>
</telerik:RadEditor>

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		setTimeout(function () {
			var editorIframe = editor.get_contentAreaElement(),
				originalIframeHeight = editorIframe.offsetHeight,
				contentCell = editorIframe.parentNode,
				cellSize = contentCell.offsetHeight,
				isCellSmaller = (originalIframeHeight - cellSize) > 2;
		
			if (isCellSmaller) {
				contentCell.style.height = originalIframeHeight + "px";
			}
		}, 0);
	}
</script>

Completed
Last Updated: 07 Jun 2016 08:57 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
2
Such functionality would improve the user experience for UI interaction of the end-users with the RadEditor tools.

Such behavior can be achieved using the following customization with the RadEditor control:

<telerik:RadEditor ID="RadEditor1" runat="server" OnClientLoad="OnClientLoad">
</telerik:RadEditor>
<script>
    function OnClientLoad(editor, args) {
        editor.attachEventHandler("onkeyup", function (e) {
            if (e.keyCode == 27)
            {
                closeContextMenus(editor.get_toolAdapter()._contextMenus);
            }
        })
    }

    function closeContextMenus(contextMenus) {
        for (var menu in contextMenus) {
            contextMenus[menu].hide();
        }
    }
</script>
Completed
Last Updated: 26 Jun 2014 11:44 by ADMIN
Completed
Last Updated: 20 Jul 2015 14:14 by stefano
Completed
Last Updated: 14 Sep 2021 10:21 by ADMIN
Release Q1 2015
The problem is when not tracked content does not exist. User cannot set the cursor outside the tracked content.
Although, typing should split the tracked text and user should be able to type in not tracked text when the feature is disabled.
Declined
Last Updated: 24 Oct 2017 09:57 by ADMIN
Created by: Imported User
Comments: 14
Category: UI for ASP.NET AJAX
Type: Feature Request
23
I think you may consider the following similar type of control(s) in future release.  I think the following is a good fit for use between a BI solution and standard reports.  It gives regular users some flexibilities to generate ad-hoc queries within an application.

http://demo.easyquerybuilder.com/asp-net-ajax/
Completed
Last Updated: 30 Jun 2014 10:52 by ADMIN
In case where RadButton is set as DefaultButton to the form or a panel and should trigger validation it does not PostBack the page regardless if the page is valid or not