]> wagnertech.de Git - mfinanz.git/blobdiff - js/kivi.Part.js
kivi.Part.js: PickerPopup: bei Enter nicht timeout abwarten
[mfinanz.git] / js / kivi.Part.js
index d83336c2e25da9c9942969951ec79c14bc536d42..a1b02c9c08774fe6dfa26f42d114254c816504c2 100644 (file)
@@ -597,7 +597,11 @@ namespace('kivi.Part', function(ns) {
         }
       }
       window.clearTimeout(this.timer);
-      this.timer = window.setTimeout(function() { self.update_results() }, 100);
+      if (event.which == KEY.ENTER) {
+        self.update_results();
+      } else {
+        this.timer = window.setTimeout(function() { self.update_results() }, 100);
+      }
     },
     close_popup: function() {
       $('#part_selection').dialog('close');