We use cookies to serve our customers and website visitors in the best possible way. Cookies are used for the proper functioning of the website and for improving the user experience, monitoring visitor traffic and marketing purposes. By continuing to browse the site, you agree to our use of cookies. You can read more about cookies here.
com.vaadin.flow.component.gridpro.
Interface ItemUpdater<T,V>
-
Type Parameters:
T
- the item typeV
- the value typeAll Superinterfaces:
BiConsumer<T,V>, Serializable, SerializableBiConsumer<T,V>
public interface ItemUpdater<T,V> extends SerializableBiConsumer<T,V>
Callback that is called when a new value has been entered to an editor.
-
-
Method Summary
All Methods Modifier and Type Method and Description void
accept(T item, V newValue)
Called when a new value has been entered to an editor for an item.
-
Methods inherited from interface java.util.function.BiConsumer
andThen
-
-