Won't Fix
Last Updated: 03 Dec 2019 10:03 by ADMIN
ADMIN
Created by: Marin
Comments: 9
Category: UI for ASP.NET AJAX
Type: Bug Report
3
Native browser behavior is vendor specific and the above issue cannot be replicated with the latest version. Default browser in latest Android versions is Chrome and we recommend using it instead of the older native browser
Won't Fix
Last Updated: 21 Feb 2017 13:49 by ADMIN
When the control is modal it should create a second iframe behind the modal background like it creates one behind the popup itself. This will allow the modal background to stay above heavy-weight objects in IE as well.
Won't Fix
Last Updated: 20 Aug 2018 09:15 by Des
When a RadEditor or SPRadEditor in a custom WebPart for SharePoint 2013 is placed in an UpdatePanel or RadAjaxPanel it is not ajaxified and loses its content after a post back.
Won't Fix
Last Updated: 05 Oct 2015 14:38 by ADMIN
Won't Fix
Last Updated: 15 Apr 2015 07:12 by Elena
Won't Fix
Last Updated: 14 Apr 2015 12:12 by Elena
ADMIN
Created by: Stanimir
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Won't Fix
Last Updated: 22 Jun 2015 12:11 by ADMIN
ADMIN
Created by: Iana Tsolova
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
2

			
Won't Fix
Last Updated: 27 Apr 2015 11:00 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: 25 Apr 2016 12:30 by ADMIN
Won't Fix
Last Updated: 08 Mar 2017 16:02 by John
Won't Fix
Last Updated: 18 Feb 2016 13:31 by Dennis
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: 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>
1 2 3 4