[richfaces-svn-commits] JBoss Rich Faces SVN: r5242 - trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts.

richfaces-svn-commits at lists.jboss.org richfaces-svn-commits at lists.jboss.org
Wed Jan 9 14:36:30 EST 2008


Author: vmolotkov
Date: 2008-01-09 14:36:30 -0500 (Wed, 09 Jan 2008)
New Revision: 5242

Modified:
   trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
Log:
component is corrected

Modified: trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js
===================================================================
--- trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js	2008-01-09 19:33:00 UTC (rev 5241)
+++ trunk/sandbox/ui/combobox/src/main/resources/org/richfaces/renderkit/html/scripts/combobox.js	2008-01-09 19:36:30 UTC (rev 5242)
@@ -365,7 +365,7 @@
 	
 	getEventItem : function(event) {
 		var item = Event.findElement(event, "div");
-		if ((item == null) || (item.id == this.listParent.id)) {
+		if ((item == null) || (item.id == this.listParent.id) || (item.id == this.list.id)) {
 			return;
 		}
 		return item;




More information about the richfaces-svn-commits mailing list