Completed
Last Updated: 24 Feb 2015 17:02 by ADMIN
ADMIN
Ianko
Created on: 13 Mar 2014 13:44
Category: UI for ASP.NET AJAX
Type: Bug Report
0
FIX: The TAB key does not provided consistent behavior across browsers
The shortcut TAB key provides correct behavior only for IE (  entities are added). UNder Firefox and Chrome the behavior is incorrect and not expected.

In FF - nothing is added to the content, moves the focus to the next HTML element.

In Chrome - a SPAN element is inserted.

A possible resolutions replacing the added shortcut for TAB key with the InsertTab command:

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

<script type="text/javascript">
	function OnClientLoad(editor, args) {
		var shortcutManager = editor.get_shortCutManager();

		if (shortcutManager.findShortCutByName("InsertTabMozilla")) {
			shortcutManager.removeShortCut("InsertTabMozilla");
			editor.addShortCut("InsertTab", "TAB");
		}
	}
</script>

1 comment
ADMIN
Misho
Posted on: 24 Feb 2015 17:02
The issue has been resolved and the fix will be available with Q1 2015.