X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/3789b528d8dd8aad4558e38e22d775bcab1cbd36..HEAD:/docs/source/KeyNav.html
diff --git a/docs/source/KeyNav.html b/docs/source/KeyNav.html
index 83d378e6..b1dcf11c 100644
--- a/docs/source/KeyNav.html
+++ b/docs/source/KeyNav.html
@@ -3,8 +3,8 @@
The source code
-
-
+
+
@@ -51,10 +51,14 @@ Ext.define('Ext.menu.KeyNav', {
},
enter: function(e) {
- var menu = this.menu;
-
+ var menu = this.menu,
+ focused = menu.focusedItem;
+
if (menu.activeItem) {
menu.onClick(e);
+ } else if (focused && focused.isFormField) {
+ // prevent stopEvent being called
+ return true;
}
},