Uses of Interface
com.vaadin.flow.component.gridpro.ItemUpdater
-
Uses of ItemUpdater in com.vaadin.flow.component.gridpro
Methods in com.vaadin.flow.component.gridpro that return ItemUpdaterModifier and TypeMethodDescriptionprotected ItemUpdater<T,
String> GridPro.EditColumn.getItemUpdater()
Gets the itemUpdater function that will be called on item changed.
Methods in com.vaadin.flow.component.gridpro with parameters of type ItemUpdaterModifier and TypeMethodDescriptionEditColumnConfigurator.checkbox
(ItemUpdater<T, Boolean> itemUpdater) Configures the column to have a checkbox editor with the given item updater.
<V> Grid.Column<T>
EditColumnConfigurator.custom
(HasValueAndElement<?, V> component, ItemUpdater<T, V> itemUpdater) Configures the column to have a custom editor component.
<V> Grid.Column<T>
EditColumnConfigurator.custom
(HasValueAndElement<?, V> component, ValueProvider<T, V> valueProvider, ItemUpdater<T, V> itemUpdater) Configures the column to have a custom editor component, using a custom value provider.
<E extends Enum<E>>
Grid.Column<T>EditColumnConfigurator.select
(ItemUpdater<T, E> itemUpdater, Class<E> enumType) Configures the column to have a select editor with the given item updater, enum type using toString() as the string representation.
<E extends Enum<E>>
Grid.Column<T>EditColumnConfigurator.select
(ItemUpdater<T, E> itemUpdater, Class<E> enumType, SerializableFunction<E, String> getStringRepresentation) Configures the column to have a select editor with the given item updater, enum type and string representation callback.
EditColumnConfigurator.select
(ItemUpdater<T, String> itemUpdater, String... options) Configures the column to have a select editor with the given item updater and options.
Configures the column to have a select editor with the given item updater and options.
protected GridPro.EditColumn<T>
GridPro.EditColumn.setItemUpdater
(ItemUpdater<T, String> itemUpdater) Sets the itemUpdater function that will be called on item changed.
EditColumnConfigurator.text
(ItemUpdater<T, String> itemUpdater) Configures the column to have a text editor with the given item updater.