]> source.dussan.org Git - vaadin-framework.git/commitdiff
Do not submit TextArea value on enter in IE (#11982)
authorArtur Signell <artur@vaadin.com>
Mon, 3 Jun 2013 17:09:56 +0000 (20:09 +0300)
committerArtur Signell <artur@vaadin.com>
Tue, 4 Jun 2013 13:56:39 +0000 (16:56 +0300)
For some reason the earlier patch was merged as a no-op

Change-Id: Id11383495b6e36991d6bddcd4cf977145c455e30

client/src/com/vaadin/client/ui/VTextArea.java

index 45e0532451bf6fac97e578dabe28379be71240f9..9e39a5ea5aadc44e0fac7f27bc7261d5e285c17a 100644 (file)
@@ -285,4 +285,12 @@ public class VTextArea extends VTextField {
         }
         this.wordwrap = wordwrap;
     }
+
+    @Override
+    public void onKeyDown(KeyDownEvent event) {
+        // Overridden to avoid submitting TextArea value on enter in IE. This is
+        // another reason why widgets should inherit a common abstract
+        // class instead of directly each other.
+    }
+
 }