Package | Description |
---|---|
com.vaadin.flow.component.gridpro |
Modifier and Type | Method and Description |
---|---|
protected ItemUpdater<T,String> |
GridPro.EditColumn.getItemUpdater()
Gets the itemUpdater function that will be called on item changed.
|
Modifier and Type | Method and Description |
---|---|
Grid.Column<T> |
EditColumnConfigurator.checkbox(ItemUpdater<T,Boolean> itemUpdater)
Configures the column to have a checkbox editor with the given item
updater.
|
<V> Grid.Column<T> |
EditColumnConfigurator.custom(AbstractField<?,V> component,
ItemUpdater<T,V> itemUpdater) |
<E extends Enum<E>> |
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>> |
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.
|
Grid.Column<T> |
EditColumnConfigurator.select(ItemUpdater<T,String> itemUpdater,
List<String> options)
Configures the column to have a select editor with the given item updater
and options.
|
Grid.Column<T> |
EditColumnConfigurator.select(ItemUpdater<T,String> itemUpdater,
String... 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.
|
Grid.Column<T> |
EditColumnConfigurator.text(ItemUpdater<T,String> itemUpdater)
Configures the column to have a text editor with the given item updater.
|
Copyright © 2020. All rights reserved.