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

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Tue Dec 11 11:20:23 EST 2007


Author: vmolotkov
Date: 2007-12-11 11:20:22 -0500 (Tue, 11 Dec 2007)
New Revision: 4720

Modified:
   branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
Log:
handling of "up,down" buttons was deleted

Modified: branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js
===================================================================
--- branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js	2007-12-11 16:03:18 UTC (rev 4719)
+++ branches/3.1.x/ui/orderingList/src/main/resources/org/richfaces/renderkit/html/scripts/ListBase.js	2007-12-11 16:20:22 UTC (rev 4720)
@@ -163,8 +163,6 @@
 	onkeydownHandler : function(event) {
 		var action = null;
 		switch (event.keyCode) {
-			case 34 : action = 'last'; this.moveSelectedItems(action ,event); break; //page down
-			case 33 : action = 'first'; this.moveSelectedItems(action, event); break; //page up
 			case 38 : //up arrow
 					  action = 'up';
 					  this.moveActiveItem(action, event);




More information about the richfaces-svn-commits mailing list