Declined
Last Updated: 02 Oct 2014 05:57 by ADMIN
Completed
Last Updated: 13 Nov 2015 09:19 by ADMIN
The best approach is to handle the OnClientTileClicking event for the TileList and determine whether it should be cancelled: http://www.telerik.com/help/aspnet-ajax/tilelist-client-side-events-onclienttileclicking.html.

A possible way to change the behavior is to pass the _cancel field value from the Clicking event of the Tile to the TileClicking event of the TileList with the following override.

			var $T = Telerik.Web.UI;
			$T.RadTileList.prototype._onTileClicking = function (tile, args)
			{
				var eventArgs = new $T.RadTileListCancelEventArgs(tile, args.get_value());
				eventArgs.set_cancel(args.get_cancel()); //the change - pass the _cancel argument to the TileList handler too
				this.raiseEvent("tileClicking", eventArgs);
				args.set_cancel(tile._isDragged || eventArgs.get_cancel());
				args.set_value(eventArgs.get_value());
				tile._isDragged = false;
			}
Completed
Last Updated: 30 Jul 2015 13:02 by ADMIN
ADMIN
Created by: Ianko
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
When the Editor is set with Skin=Window7, fieldsets has a non designed margin top value. The New Area bottom also drop to a new line, where it should be next to the radio buttons. 

Possible solutions is setting a CSS file to the DialogsCssFile property with CSS rules that resolve the issue:

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


Styles.css

html.redImageMapDialog.RadForm_Windows7 #dialogControl fieldset {
	margin-top:0;
}


button#ImageMap_NewArea {
	width:110px !important;
}


Completed
Last Updated: 13 Oct 2014 15:12 by ADMIN
Created by: Troy
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Stylebuilder seems to be down. I get a server error when trying to create a new skin or edit an existing one?
Completed
Last Updated: 29 Jan 2015 12:19 by truecare
Completed
Last Updated: 15 Oct 2015 07:47 by ADMIN
ADMIN
Created by: Boyan Dimitrov
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Completed
Last Updated: 06 Aug 2015 11:19 by ADMIN
When a dropdown element is decorated, dragging of items causes incorrect selection.

The problem is due to browser behavior of the click event. When performing a dragging like action on plain list items the event target is the UL element instead the LI. 

The following resolution will work only for dropdowns without multiple selection:

<telerik:RadFormDecorator ID="FormDecorator1" runat="server" DecoratedControls="All"
	DecorationZoneID="decorationZone" Skin="Silk"></telerik:RadFormDecorator>

<div id="decorationZone">
	<asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="false" Width="135px" TabIndex="3">
		<asp:ListItem Text="Comedy" Value="1"></asp:ListItem>
		<asp:ListItem Text="Drama" Value="2"></asp:ListItem>
		<asp:ListItem Text="Romance" Value="3"></asp:ListItem>
		<asp:ListItem Text="Religious" Value="4"></asp:ListItem>
		<asp:ListItem Text="Fantasy" Value="5"></asp:ListItem>
		<asp:ListItem Text="Mystery" Value="6"></asp:ListItem>
		<asp:ListItem Text="Science fiction" Value="7"></asp:ListItem>
	</asp:DropDownList>
</div>

<script type="text/javascript">
	Telerik.Web.UI.RadFormDecorator.prototype.decorateSelects = function (rootElement) {
		var selects = rootElement.getElementsByTagName("select");
		if (selects.length == 0 && rootElement.tagName && rootElement.tagName.toLowerCase() == "select")
			selects = [rootElement];
		for (var i = 0; i < selects.length; i++) {
			this.decorateSelect(selects[i]);
		}

		if (selects.length > 0) {
			if (!this._selectBodyClickDelegate) {
				this._selectBodyClickDelegate = Function.createDelegate(this, this._selectBodyClickHandler);

				if ($telerik.isTouchDevice) {
					this._ensureThisDelegate("_selectScrollingDelegate", this._selectScrollingHandler);
					$telerik.addHandler(document, "touchmove", this._selectScrollingDelegate);
				}
				$telerik.addHandler(document, ($telerik.isTouchDevice ? "touchend" : "mousedown"), this._selectBodyClickDelegate);
			}
		}
	};
</script>
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.