Author: pyaschenko
Date: 2010-09-17 04:11:22 -0400 (Fri, 17 Sep 2010)
New Revision: 19232
Modified:
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/AutocompleteBase.js
Log:
https://jira.jboss.org/browse/RF-9105
onchange bubble fix
Modified:
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/AutocompleteBase.js
===================================================================
---
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/AutocompleteBase.js 2010-09-17
08:01:17 UTC (rev 19231)
+++
trunk/ui/input/ui/src/main/resources/META-INF/resources/org.richfaces/AutocompleteBase.js 2010-09-17
08:11:22 UTC (rev 19232)
@@ -76,8 +76,8 @@
inputEventHandlers["blur"+this.namespace] = onBlur;
inputEventHandlers["click"+this.namespace] = onClick;
inputEventHandlers[($.browser.opera ? "keypress" :
"keydown")+this.namespace] = onKeyDown;
+ inputEventHandlers["change"+this.namespace] = function (event) {if
(this.focused) {event.stopPropagation()}};
rf.Event.bindById(this.fieldId, inputEventHandlers, this);
- //inputEventHandlers["change"+this.namespace] = function (event) {if
(this.focused) {event}};
inputEventHandlers = {};
inputEventHandlers["mousedown"+this.namespace] = onSelectMouseDown;