You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@cocoon.apache.org by an...@apache.org on 2007/03/13 22:30:01 UTC

svn commit: r517880 - in /cocoon: branches/BRANCH_2_1_X/status.xml trunk/blocks/cocoon-forms/cocoon-forms-impl/src/main/resources/org/apache/cocoon/forms/resources/js/MultiValueEditorWithSuggestion.js

Author: antonio
Date: Tue Mar 13 14:30:00 2007
New Revision: 517880

URL: http://svn.apache.org/viewvc?view=rev&rev=517880
Log:

<action dev="AG" type="fix" fixes-bug="COCOON-2023" due-to="Larry Ruiz" due-to-email="lruiz@agssa.net">
  CForms: MultivalueEditorWihtSuggestion does not add values to the listbox on Internet Explorer.
</action>

Modified:
    cocoon/branches/BRANCH_2_1_X/status.xml
    cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/main/resources/org/apache/cocoon/forms/resources/js/MultiValueEditorWithSuggestion.js

Modified: cocoon/branches/BRANCH_2_1_X/status.xml
URL: http://svn.apache.org/viewvc/cocoon/branches/BRANCH_2_1_X/status.xml?view=diff&rev=517880&r1=517879&r2=517880
==============================================================================
--- cocoon/branches/BRANCH_2_1_X/status.xml (original)
+++ cocoon/branches/BRANCH_2_1_X/status.xml Tue Mar 13 14:30:00 2007
@@ -181,6 +181,9 @@
 
   <changes>
   <release version="2.1.11" date="TBD">
+    <action dev="AG" type="fix" fixes-bug="COCOON-2023" due-to="Larry Ruiz" due-to-email="lruiz@agssa.net">
+      CForms: MultivalueEditorWihtSuggestion doesn't add values to the listbox on Internet Explorer.
+    </action>
     <action dev="VG" type="fix">
       CForms: Submit widget now inherits validate attribute value from the
       ancestor widget, if it is specified.

Modified: cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/main/resources/org/apache/cocoon/forms/resources/js/MultiValueEditorWithSuggestion.js
URL: http://svn.apache.org/viewvc/cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/main/resources/org/apache/cocoon/forms/resources/js/MultiValueEditorWithSuggestion.js?view=diff&rev=517880&r1=517879&r2=517880
==============================================================================
--- cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/main/resources/org/apache/cocoon/forms/resources/js/MultiValueEditorWithSuggestion.js (original)
+++ cocoon/trunk/blocks/cocoon-forms/cocoon-forms-impl/src/main/resources/org/apache/cocoon/forms/resources/js/MultiValueEditorWithSuggestion.js Tue Mar 13 14:30:00 2007
@@ -72,7 +72,7 @@
         postCreate: function() {
             this.entry.dataUrl = this.dataUrl;
             this.entry.dataProvider.searchUrl = this.dataUrl;
-            dojo.event.connect(this.entry.textInputNode, "onkeypress", this, "_processInputKey");
+            dojo.event.connect("after", this.entry, "_handleKeyEvents", this, "_processInputKey");
         },
 
         _readData: function(origFrag) {