Completed
Last Updated: 14 Mar 2014 16:15 by ADMIN
When RadMenu is present on the page where a RadGrid has to be exported, a JavaScript error is thrown when the response is received. This is observable only in an iframe (or, therefore, a RadWindow).

Different ways to work around this are:

- remove the menu/context menu

- use a regular browser window instead of a RadWindow for this page

- use the ContentTemplate of the RadWindow instead of loading an entire page in it

- try adding the following function override at the end of the content page, just before the closing form tag:
			Telerik.Web.UI.RadMenu.prototype._onMouseOut = function (e)
			{
				var relatedTarget = e.rawEvent.relatedTarget ? e.rawEvent.relatedTarget : e.rawEvent.toElement;

				if (!relatedTarget && !this._isMainElementDescendant(e.target))
				{
					//The mouse is out of the window or the current frame - close the menu
					try
					{
						var that = this;
						setTimeout(
							function ()
							{
								that.close();
							}, this.get_collapseDelay());
					}
					catch (e)
					{
					
					}
				}
			}

If this does not help, try adding this one below:
$telerik.addHandler = function (element, eventName, handler, autoRemove) {
				if (!element._events)
					element._events = {};
			
				var eventCache = element._events[eventName];
				if (!eventCache)
					element._events[eventName] = eventCache = [];
			
				var browserHandler;
				if ($telerik.useAttachEvent(element)) {
					browserHandler = function() {
						var e = {};
						try {
							e = $telerik._getWindow(element).event
						}
						catch (ex) {
						}
						try {
							return handler.call(element, new Sys.UI.DomEvent(e));
						}
						catch (e) {
							
						}
					}
					element.attachEvent('on' + eventName, browserHandler);
				}
				else if (element.addEventListener) {
					browserHandler = function(e) {
						return handler.call(element, new Sys.UI.DomEvent(e));
					}
					element.addEventListener(eventName, browserHandler, false);
				}
			
				eventCache[eventCache.length] = { handler: handler, browserHandler: browserHandler, autoRemove: autoRemove };
				if (autoRemove) {
					var d = element.dispose;
					if (d !== $telerik._disposeHandlers) {
						element.dispose = $telerik._disposeHandlers;
						if (typeof(d) !== "undefined")
							element._chainDispose = d;
					}
				}
			}
Completed
Last Updated: 28 Apr 2015 15:21 by ADMIN
ADMIN
Created by: Hristo Valyavicharski
Comments: 0
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Completed
Last Updated: 11 Nov 2014 14:47 by ADMIN
The issue appears when the user starts to type and the cursor is between BR elements. Тhe first typed character is out of the INS element instead its first one. The rest of the typed content is wrapped in SPAN and U elements.
Completed
Last Updated: 28 Feb 2014 16:08 by ADMIN
Created by: Faten
Comments: 2
Category: UI for ASP.NET AJAX
Type: Feature Request
0
Trying to download the step by step tutorial from the following link fails:

http://www.telerik.com/support/aspnet-ajax#step-by-step

Thanks in advance,
Faten
Completed
Last Updated: 04 Aug 2015 11:06 by ADMIN
Declined
Last Updated: 21 Apr 2015 12:00 by ADMIN
ADMIN
Created by: Deyan Enchev
Comments: 1
Category: UI for ASP.NET AJAX
Type: Feature Request
0

			
Completed
Last Updated: 14 Jan 2015 15:54 by ADMIN
Completed
Last Updated: 14 Jan 2015 16:13 by ADMIN
Completed
Last Updated: 14 Jan 2015 16:20 by ADMIN
Declined
Last Updated: 13 Oct 2014 15:06 by ADMIN
ADMIN
Created by: Telerik Admin
Comments: 1
Category: UI for ASP.NET AJAX
Type: Bug Report
0

			
Declined
Last Updated: 14 Jan 2015 17:23 by ADMIN
Declined
Last Updated: 15 Apr 2015 11:46 by ADMIN
Completed
Last Updated: 26 May 2015 12:13 by ADMIN
Completed
Last Updated: 14 Oct 2015 13:59 by ADMIN
Completed
Last Updated: 17 Mar 2015 13:47 by ADMIN
Declined
Last Updated: 16 Mar 2015 16:03 by ADMIN
Completed
Last Updated: 04 Feb 2016 14:32 by ADMIN
Completed
Last Updated: 12 Nov 2014 13:05 by ADMIN
Completed
Last Updated: 29 Jun 2016 06:21 by ADMIN
ADMIN
Created by: Rumen
Comments: 0
Category: UI for ASP.NET AJAX
Type: Feature Request
0
When using the Image Editor from with in the Image Manager, our customers would like to be able to enter the ""Resize" numbers for the width and height.  Right now, the only way to change the numbers is using the slider tool. Is there any way to enter the actual numbers ?