Uses of Class
org.vaadin.tatu.BeanTable

  • Uses of BeanTable in org.vaadin.tatu

    Classes in org.vaadin.tatu with type parameters of type BeanTable
    Modifier and Type
    Class
    Description
    class 
     
    class 
     
    Method parameters in org.vaadin.tatu with type arguments of type BeanTable
    Modifier and Type
    Method
    Description
    com.vaadin.flow.shared.Registration
    BeanTable.addItemClickedListener(com.vaadin.flow.component.ComponentEventListener<ItemClickedEvent<T,BeanTable<T>>> listener)
    Add ItemClickedEvent listener to the BeanTable
    com.vaadin.flow.shared.Registration
    BeanTable.addSelectionChangedListener(com.vaadin.flow.component.ComponentEventListener<BeanTableSelectionChangedEvent<T,BeanTable<T>>> listener)
    Add SelectionChangedEvent listener to the BeanTable
    Constructors in org.vaadin.tatu with parameters of type BeanTable
    Modifier
    Constructor
    Description
     
    BeanTableDataView(com.vaadin.flow.function.SerializableSupplier<com.vaadin.flow.data.provider.DataProvider<T,?>> dataProviderSupplier, BeanTable<T> beanTable)
    Constructs a new DataView.
     
    BeanTableDataView(com.vaadin.flow.function.SerializableSupplier<com.vaadin.flow.data.provider.DataProvider<T,?>> dataProviderSupplier, BeanTable<T> beanTable, com.vaadin.flow.function.SerializableConsumer<com.vaadin.flow.data.provider.IdentifierProvider<T>> identifierChangedCallback)
    Constructs a new DataView.
     
    BeanTableLazyDataView(com.vaadin.flow.function.SerializableSupplier<? extends com.vaadin.flow.data.provider.DataProvider<T,?>> dataProviderSupplier, BeanTable<T> component)
    Creates a new lazy data view for grid and verifies the passed data provider is compatible with this data view implementation.
     
    BeanTableListDataView(com.vaadin.flow.function.SerializableSupplier<com.vaadin.flow.data.provider.DataProvider<T,?>> dataProviderSupplier, BeanTable<T> beanTable, com.vaadin.flow.function.SerializableBiConsumer<com.vaadin.flow.function.SerializablePredicate<T>,com.vaadin.flow.function.SerializableComparator<T>> filterOrSortingChangedCallback)
    Creates a new in-memory data view for BeanTable and verifies the passed data provider is compatible with this data view implementation.
     
    BeanTableListDataView(com.vaadin.flow.function.SerializableSupplier<com.vaadin.flow.data.provider.DataProvider<T,?>> dataProviderSupplier, BeanTable<T> beanTable, com.vaadin.flow.function.SerializableConsumer<com.vaadin.flow.data.provider.IdentifierProvider<T>> identifierChangedCallback, com.vaadin.flow.function.SerializableBiConsumer<com.vaadin.flow.function.SerializablePredicate<T>,com.vaadin.flow.function.SerializableComparator<T>> filterOrSortingChangedCallback)
    Creates a new in-memory data view for BeanTable and verifies the passed data provider is compatible with this data view implementation.