Completed
Last Updated: 15 Jan 2014 16:00 by Marlou
ADMIN
Misho
Created on: 24 Oct 2013 14:04
Category: Editor
Type: Feature Request
1
FIX: The toolbar doesn't show when its mode is ShowOnFocus and PageTop in IE11
The toolbar doesn't show when its mode is ShowOnFocus and PageTop in IE11

A possible resolution is to attach a function to the editor's "focusin" event, the logic of which is to force the visibility state of the toolbar. You can examine the following example:

<telerik:RadEditor runat="server" ID="RadEditor1" 
	ToolbarMode="ShowOnFocus" OnClientLoad="OnClientLoad">

</telerik:RadEditor>

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		editor.attachEventHandler("focusin", function (e) {
			var toolAdapter = editor.get_toolAdapter();

			setTimeout(function () {
				var isVisible = toolAdapter._toolbarHolder ? toolAdapter._toolbarHolder.isVisible() : false;
				if (!isVisible) {
					toolAdapter._showToolbarHolder(true);
				}
			}, 0)
		});
	}
</script>


2 comments
Marlou
Posted on: 15 Jan 2014 16:00
Thank you!
Marlou
Posted on: 08 Jan 2014 16:05
We're having this problem too, seems the arrow in the corner of the editor (to enlarge it) is not working in IE11 either.
Would be great if this were fixed asap.