Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion articles/components/_input-field-common-features.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -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
|===

Expand Down
3 changes: 1 addition & 2 deletions src/main/java/com/vaadin/demo/component/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,5 @@ private Constants() {

public static final List<ValueChangeMode> valueChangeModes = List.of(
ValueChangeMode.EAGER, ValueChangeMode.LAZY,
ValueChangeMode.TIMEOUT, ValueChangeMode.ON_BLUR,
ValueChangeMode.ON_CHANGE);
ValueChangeMode.TIMEOUT, ValueChangeMode.ON_CHANGE);
}
Loading