[richfaces-svn-commits] JBoss Rich Faces SVN: r4866 - branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/scripts.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Fri Dec 14 14:02:52 EST 2007


Author: nbelaevski
Date: 2007-12-14 14:02:51 -0500 (Fri, 14 Dec 2007)
New Revision: 4866

Modified:
   branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/scripts/ListShuttle.js
Log:
ListShuttle was canceling tab presses: fixed

Modified: branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/scripts/ListShuttle.js
===================================================================
--- branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/scripts/ListShuttle.js	2007-12-14 18:18:17 UTC (rev 4865)
+++ branches/3.1.x/ui/listShuttle/src/main/resources/org/richfaces/renderkit/html/scripts/ListShuttle.js	2007-12-14 19:02:51 UTC (rev 4866)
@@ -115,7 +115,10 @@
 	onkeydownHandler : function(event, component) {
 		component._onkeydownHandler(event);
 		this.controlListManager();
-		Event.stop(event);
+		
+		if (event.keyCode != Event.KEY_TAB) {
+			Event.stop(event);
+		}
 	},
 	
 	controlsProcessing : function(disabledControls , action) {




More information about the richfaces-svn-commits mailing list