Won't Fix
Last Updated: 13 Sep 2017 06:45 by ADMIN
Won't Fix
Last Updated: 16 Apr 2015 10:15 by Elena
ADMIN
Created by: Stanimir
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Won't Fix
Last Updated: 25 Apr 2017 13:28 by ADMIN
ADMIN
Created by: Anton
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
1
The issue can be workarounded by calling preventDefault of the mousedown event when ComboBox item is clicked:
<telerik:RadScriptManager runat="server" />
<script>
	var onDocumentClick = Telerik.Web.UI.RadComboBox.prototype._onDocumentClick;
	Telerik.Web.UI.RadComboBox.prototype._onDocumentClick = function (e) {
		if (!e) e = event;

		var target = e.target || e.srcElement;

		while (target.nodeType !== 9) {
			if (!target.parentNode || target == this.get_element() || target == this.get_dropDownElement()) {
				e.preventDefault();
				return;
			}

			target = target.parentNode;
		}
		onDocumentClick.call(this, e);
	};
</script>

<telerik:RadComboBox ID="RadComboBox1" runat="server" RenderMode="Lightweight" OnClientBlur="OnClientBlur"
	CheckBoxes="true">
	<Items>
		<telerik:RadComboBoxItem Text="Item1" Value="1" />
		<telerik:RadComboBoxItem Text="Item2" Value="2" />
		<telerik:RadComboBoxItem Text="Item3" Value="3" />
		<telerik:RadComboBoxItem Text="Item4" Value="4" />
	</Items>
</telerik:RadComboBox>

<script>
	function OnClientBlur(sender, args) {
		console.log("Blur event");
	}
</script>
Won't Fix
Last Updated: 19 Nov 2015 08:11 by ADMIN
Won't Fix
Last Updated: 25 Sep 2015 11:44 by ADMIN
Won't Fix
Last Updated: 18 May 2015 11:30 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
1

			
Won't Fix
Last Updated: 18 Feb 2016 13:31 by Dennis
Won't Fix
Last Updated: 25 Apr 2016 12:30 by ADMIN
Won't Fix
Last Updated: 08 Mar 2017 16:02 by John
Won't Fix
Last Updated: 07 Aug 2015 15:00 by ADMIN
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>
Won't Fix
Last Updated: 18 May 2015 16:19 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Adding CSS styles for the table layout via the TableCssLayoutTemplates adds the style element inside the body, which is non W3C compliant content.
Won't Fix
Last Updated: 11 Aug 2015 14:01 by Erik
ADMIN
Created by: Pavlina
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 15 Apr 2015 11:00 by ADMIN
Won't Fix
Last Updated: 18 Aug 2017 15:47 by Miguel Angel
ADMIN
Created by: Pavlina
Comments: 2
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Won't Fix
Last Updated: 14 Jun 2016 23:14 by Bryan
Won't Fix
Last Updated: 10 Nov 2015 11:08 by ADMIN
ADMIN
Created by: Ianko
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0
Under IE10 and 11 the CrossFade animation causes a random flickering. 
Won't Fix
Last Updated: 20 Jun 2022 14:37 by ADMIN
Won't Fix
Last Updated: 01 Jun 2021 11:12 by ADMIN
ADMIN
Created by: Vessy
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0
The long code lines in the QSF code viewer are very hard to read as the only way to get the horizontal scroll-bar is to reach the bottom of the page.