Uses of Interface
com.vaadin.flow.component.gridpro.ItemUpdater

  • Uses of ItemUpdater in com.vaadin.flow.component.gridpro

    Modifier and Type
    Method
    Description
    protected 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 ItemUpdater
    Modifier and Type
    Method
    Description
    com.vaadin.flow.component.grid.Grid.Column<T>
    EditColumnConfigurator.checkbox(ItemUpdater<T,Boolean> itemUpdater)
    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>
    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>>
    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>
    EditColumnConfigurator.select(ItemUpdater<T,String> itemUpdater, String... options)
    Configures the column to have a select editor with the given item updater and options.
    com.vaadin.flow.component.grid.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.
    GridPro.EditColumn.setItemUpdater(ItemUpdater<T,String> itemUpdater)
    Sets the itemUpdater function that will be called on item changed.
    com.vaadin.flow.component.grid.Grid.Column<T>
    EditColumnConfigurator.text(ItemUpdater<T,String> itemUpdater)
    Configures the column to have a text editor with the given item updater.