summaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
authorTeppo Kurki <teppo.kurki@vaadin.com>2015-06-03 22:06:42 +0300
committerVaadin Code Review <review@vaadin.com>2015-06-04 11:34:57 +0000
commit69f66c8b28119da604836bde502e2220a35216e3 (patch)
tree4d4287b3cc7e27d0e43b13133a9035671300b452 /shared
parent3954d200f0d1236738cdcd147d5b07540d812bba (diff)
downloadvaadin-framework-69f66c8b28119da604836bde502e2220a35216e3.tar.gz
vaadin-framework-69f66c8b28119da604836bde502e2220a35216e3.zip
Do not send value change to server for non-immediate CheckBox (#18102)
Change-Id: I60a58af72d7166869d8bdc8930e16440e02d2ac5
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/shared/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java b/shared/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java
index 0041da4dfa..f4124100e0 100644
--- a/shared/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java
+++ b/shared/src/com/vaadin/shared/ui/checkbox/CheckBoxServerRpc.java
@@ -16,8 +16,10 @@
package com.vaadin.shared.ui.checkbox;
import com.vaadin.shared.MouseEventDetails;
+import com.vaadin.shared.annotations.Delayed;
import com.vaadin.shared.communication.ServerRpc;
public interface CheckBoxServerRpc extends ServerRpc {
+ @Delayed
public void setChecked(boolean checked, MouseEventDetails mouseEventDetails);
}