Completed
Last Updated: 16 Jul 2015 05:02 by siddhi
ADMIN
Ianko
Created on: 13 Jul 2015 14:53
Category: Editor
Type: Bug Report
3
Unresponsive browser when working with images under IE11, 10 and 9
Trying to operate with images in RadEditor under IE11 leads to unresponsiveness. For example, using the paragraph style, selecting an image and switching to HTML and Design mode, etc.

You can workaround that by forcing the compatibility mode of the IE to IE8:

<meta http-equiv="X-UA-Compatible" content="IE=8" />
3 comments
siddhi
Posted on: 16 Jul 2015 05:02
Thanks! :)
ADMIN
Misho
Posted on: 15 Jul 2015 12:31
The issue has been already fixed and will be available in Q2 2015 SP1 scheduled for the end of July. It is related to the unlink browser command. There are the following temporary workarounds:
1) Remove the Unlink tool from RadEditor.
2) Add the new unlink command implementation:
(function($, undefined) {
	var $T = Telerik.Web.UI;
	var Editor = $T.Editor;

	Editor.UnlinkCommand = function(editor, options) {
		var settings = {
			tag: "a",
			altTags: []
		};
		Editor.UnlinkCommand.initializeBase(this, [editor, settings, options]);
	};
	Editor.UnlinkCommand.prototype = {
		getState: function(wnd, editor, range) {
			var states = Editor.CommandStates;
			var result = Editor.UnlinkCommand.callBaseMethod(this, "getState", [wnd, editor, range]);

			return result === states.Off ? states.Disabled : states.Off;
		}
	};

	Editor.UnlinkCommand.registerClass("Telerik.Web.UI.Editor.UnlinkCommand", Editor.InlineCommand);
	Editor.UpdateCommandsArray.Unlink = new Editor.UnlinkCommand();
})($telerik.$);

siddhi
Posted on: 14 Jul 2015 10:14
Hi,
Even i am facing this issue. When will the fix be available?