diff --git a/articles/components/_input-field-common-features.adoc b/articles/components/_input-field-common-features.adoc index d46819eb48..a22af38e06 100644 --- a/articles/components/_input-field-common-features.adoc +++ b/articles/components/_input-field-common-features.adoc @@ -285,7 +285,6 @@ With the Flow Java API, you can define when client-side value changes are synchr |`EAGER`|Synchronizes the value whenever it changes on the client side, for example on each keystroke.|No |`LAZY`|Synchronizes the value after a defined interval has passed without further changes. If another change occurs before the interval ends, the timeout is restarted.|Yes |`TIMEOUT`|Synchronizes the value at defined intervals while the value continues to change.|Yes -|`ON_BLUR`|Synchronizes the value on the `blur` event, when the component loses focus.|No |`ON_CHANGE` (default)|Synchronizes the value on the `change` event, when the component value is committed.|No |=== diff --git a/src/main/java/com/vaadin/demo/component/Constants.java b/src/main/java/com/vaadin/demo/component/Constants.java index 29ce13ef34..9f9972f9a5 100644 --- a/src/main/java/com/vaadin/demo/component/Constants.java +++ b/src/main/java/com/vaadin/demo/component/Constants.java @@ -11,6 +11,5 @@ private Constants() { public static final List valueChangeModes = List.of( ValueChangeMode.EAGER, ValueChangeMode.LAZY, - ValueChangeMode.TIMEOUT, ValueChangeMode.ON_BLUR, - ValueChangeMode.ON_CHANGE); + ValueChangeMode.TIMEOUT, ValueChangeMode.ON_CHANGE); }