summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2010-11-29 09:15:10 +0000
committerArtur Signell <artur.signell@itmill.com>2010-11-29 09:15:10 +0000
commitc8a9ea0d4831fb27f16b2ae1d752d9f9670fa511 (patch)
treeab5f64fa0bade5cc33f80522566f43d762fe8498 /src
parent2e19874538fe5c2d1780b6f4a8bb8e925a615f6c (diff)
downloadvaadin-framework-c8a9ea0d4831fb27f16b2ae1d752d9f9670fa511.tar.gz
vaadin-framework-c8a9ea0d4831fb27f16b2ae1d752d9f9670fa511.zip
Fix #6070 - Changing TextChangeEvent mode or timeout does not update to the client
svn changeset:16201/svn branch:6.5
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/ui/TextField.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/com/vaadin/ui/TextField.java b/src/com/vaadin/ui/TextField.java
index 0f0758c4a9..a5d0f1e676 100644
--- a/src/com/vaadin/ui/TextField.java
+++ b/src/com/vaadin/ui/TextField.java
@@ -508,6 +508,7 @@ public class TextField extends AbstractTextField implements
*/
public void setTextChangeEventMode(TextChangeEventMode inputEventMode) {
textChangeEventMode = inputEventMode;
+ requestRepaint();
}
/**
@@ -576,6 +577,7 @@ public class TextField extends AbstractTextField implements
*/
public void setTextChangeTimeout(int timeout) {
textChangeEventTimeout = timeout;
+ requestRepaint();
}
/**