summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorArtur Signell <artur.signell@itmill.com>2011-04-04 10:22:09 +0000
committerArtur Signell <artur.signell@itmill.com>2011-04-04 10:22:09 +0000
commit9befc8092d404c3993d60a9873da1ef8b46d597b (patch)
tree12f9885e5ffb8bec40c540bccf4c0c33be81e8c1 /src
parent490b95721369608ad00211a95caf198b64e523dc (diff)
downloadvaadin-framework-9befc8092d404c3993d60a9873da1ef8b46d597b.tar.gz
vaadin-framework-9befc8092d404c3993d60a9873da1ef8b46d597b.zip
#6754 Added missing requestRepaint calls
svn changeset:18090/svn branch:6.5
Diffstat (limited to 'src')
-rw-r--r--src/com/vaadin/ui/AbstractTextField.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/vaadin/ui/AbstractTextField.java b/src/com/vaadin/ui/AbstractTextField.java
index cd9d99de18..ad31a46157 100644
--- a/src/com/vaadin/ui/AbstractTextField.java
+++ b/src/com/vaadin/ui/AbstractTextField.java
@@ -306,6 +306,7 @@ public abstract class AbstractTextField extends AbstractField implements
*/
public void setNullRepresentation(String nullRepresentation) {
this.nullRepresentation = nullRepresentation;
+ requestRepaint();
}
/**
@@ -325,12 +326,13 @@ public abstract class AbstractTextField extends AbstractField implements
* </p>
*
* @param nullSettingAllowed
- * Should the null-string represenation be always converted to
+ * Should the null-string representation always be converted to
* null-values.
* @see TextField#getNullRepresentation()
*/
public void setNullSettingAllowed(boolean nullSettingAllowed) {
this.nullSettingAllowed = nullSettingAllowed;
+ requestRepaint();
}
/**