summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/PopupDateField.java
diff options
context:
space:
mode:
authorFabian Lange <lange.fabian@gmail.com>2014-06-20 10:49:50 +0200
committerVaadin Code Review <review@vaadin.com>2014-06-23 06:51:47 +0000
commit0c229ae91460fedaeb557bdc5a646433658b0dfb (patch)
tree4959adbc8ab29cc67515e44e2fc792d39ffba310 /server/src/com/vaadin/ui/PopupDateField.java
parent6e109e4d73b7e3c09da3000a813904b52ea89991 (diff)
downloadvaadin-framework-0c229ae91460fedaeb557bdc5a646433658b0dfb.tar.gz
vaadin-framework-0c229ae91460fedaeb557bdc5a646433658b0dfb.zip
Reading properties of components should not set state to dirty (#14060).
Many core vaadin components did incorrectly mark the state as dirty when reading from them. This patch fixes the problem, which should reduce the amount of server->client state updates significantly. Change-Id: I342d74129e2985a7f407e9b53a802dc0146d9992
Diffstat (limited to 'server/src/com/vaadin/ui/PopupDateField.java')
-rw-r--r--server/src/com/vaadin/ui/PopupDateField.java9
1 files changed, 7 insertions, 2 deletions
diff --git a/server/src/com/vaadin/ui/PopupDateField.java b/server/src/com/vaadin/ui/PopupDateField.java
index 61aac16a97..f07ac84160 100644
--- a/server/src/com/vaadin/ui/PopupDateField.java
+++ b/server/src/com/vaadin/ui/PopupDateField.java
@@ -93,6 +93,11 @@ public class PopupDateField extends DateField {
return (PopupDateFieldState) super.getState();
}
+ @Override
+ protected PopupDateFieldState getState(boolean markAsDirty) {
+ return (PopupDateFieldState) super.getState(markAsDirty);
+ }
+
/**
* Checks whether the text field is enabled (default) or not.
*
@@ -101,7 +106,7 @@ public class PopupDateField extends DateField {
* @return <b>true</b> if the text field is enabled, <b>false</b> otherwise.
*/
public boolean isTextFieldEnabled() {
- return getState().textFieldEnabled;
+ return getState(false).textFieldEnabled;
}
/**
@@ -136,6 +141,6 @@ public class PopupDateField extends DateField {
* @return String with the description
*/
public String getAssistiveText() {
- return getState().descriptionForAssistiveDevices;
+ return getState(false).descriptionForAssistiveDevices;
}
}