summaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorMika Murtojärvi <mika@vaadin.com>2015-06-17 07:56:55 +0000
committerMika Murtojarvi <mika@vaadin.com>2015-06-17 11:34:20 +0300
commitb34500197a833080ae7ab25898207fa96ee016e6 (patch)
treef3165f54898066418caa5de9b8bd07110e15517a /server/src
parent3aebda062b2d179f21d546294a7127caf92517f8 (diff)
downloadvaadin-framework-b34500197a833080ae7ab25898207fa96ee016e6.tar.gz
vaadin-framework-b34500197a833080ae7ab25898207fa96ee016e6.zip
Revert "Prevent field from updating when removing text change listener.7.5.0.rc2
(#16270)" This reverts commit 4af793d06a0f4a6577aad13403ca7982c6fce224. Test ConverterThatEnforcesAFormatTest.checkElaborating is broken by this change. Change-Id: I08dba8e47386dfb001caafae562304858ad02348
Diffstat (limited to 'server/src')
-rw-r--r--server/src/com/vaadin/ui/AbstractTextField.java33
1 files changed, 18 insertions, 15 deletions
diff --git a/server/src/com/vaadin/ui/AbstractTextField.java b/server/src/com/vaadin/ui/AbstractTextField.java
index 14c135228c..93025ac0fd 100644
--- a/server/src/com/vaadin/ui/AbstractTextField.java
+++ b/server/src/com/vaadin/ui/AbstractTextField.java
@@ -126,22 +126,25 @@ public abstract class AbstractTextField extends AbstractField<String> implements
selectionPosition = -1;
}
- target.addAttribute(TextFieldConstants.ATTR_TEXTCHANGE_EVENTMODE,
- getTextChangeEventMode().toString());
- target.addAttribute(TextFieldConstants.ATTR_TEXTCHANGE_TIMEOUT,
- getTextChangeTimeout());
- if (lastKnownTextContent != null) {
- /*
- * The field has be repainted for some reason (e.g. caption, size,
- * stylename), but the value has not been changed since the last
- * text change event. Let the client side know about the value the
- * server side knows. Client side may then ignore the actual value,
- * depending on its state.
- */
- target.addAttribute(
- TextFieldConstants.ATTR_NO_VALUE_CHANGE_BETWEEN_PAINTS,
- true);
+ if (hasListeners(TextChangeEvent.class)) {
+ target.addAttribute(TextFieldConstants.ATTR_TEXTCHANGE_EVENTMODE,
+ getTextChangeEventMode().toString());
+ target.addAttribute(TextFieldConstants.ATTR_TEXTCHANGE_TIMEOUT,
+ getTextChangeTimeout());
+ if (lastKnownTextContent != null) {
+ /*
+ * The field has be repainted for some reason (e.g. caption,
+ * size, stylename), but the value has not been changed since
+ * the last text change event. Let the client side know about
+ * the value the server side knows. Client side may then ignore
+ * the actual value, depending on its state.
+ */
+ target.addAttribute(
+ TextFieldConstants.ATTR_NO_VALUE_CHANGE_BETWEEN_PAINTS,
+ true);
+ }
}
+
}
@Override