-
Gets the itemUpdater function that will be called on item changed.
com.vaadin.flow.component.grid.Grid.Column<T>
Configures the column to have a checkbox editor with the given item
updater.
<V> com.vaadin.flow.component.grid.Grid.Column<T>
EditColumnConfigurator.custom(com.vaadin.flow.component.HasValueAndElement<?,V> component,
ItemUpdater<T,V> itemUpdater)
Configures the column to have a custom editor component.
<V> com.vaadin.flow.component.grid.Grid.Column<T>
EditColumnConfigurator.custom(com.vaadin.flow.component.HasValueAndElement<?,V> component,
com.vaadin.flow.function.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>>
com.vaadin.flow.component.grid.Grid.Column<T>
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>>
com.vaadin.flow.component.grid.Grid.Column<T>
EditColumnConfigurator.select(ItemUpdater<T,E> itemUpdater,
Class<E> enumType,
com.vaadin.flow.function.SerializableFunction<E,String> getStringRepresentation)
Configures the column to have a select editor with the given item
updater, enum type and string representation callback.
com.vaadin.flow.component.grid.Grid.Column<T>
Configures the column to have a select editor with the given item updater
and options.
com.vaadin.flow.component.grid.Grid.Column<T>
Configures the column to have a select editor with the given item updater
and options.
Sets the itemUpdater function that will be called on item changed.
com.vaadin.flow.component.grid.Grid.Column<T>
Configures the column to have a text editor with the given item updater.