Uses of Class
com.vaadin.flow.component.checkbox.CheckboxGroup
-
Packages that use CheckboxGroup Package Description com.vaadin.flow.component.checkbox com.vaadin.flow.component.checkbox.dataview -
-
Uses of CheckboxGroup in com.vaadin.flow.component.checkbox
Method parameters in com.vaadin.flow.component.checkbox with type arguments of type CheckboxGroup Modifier and Type Method Description Registration
CheckboxGroup. addSelectionListener(MultiSelectionListener<CheckboxGroup<T>,T> listener)
Constructor parameters in com.vaadin.flow.component.checkbox with type arguments of type CheckboxGroup Constructor Description CheckboxGroup(HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<CheckboxGroup<T>,Set<T>>> listener)
Constructs a checkbox group with a value change listener.CheckboxGroup(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<CheckboxGroup<T>,Set<T>>> listener)
Constructs a checkbox group with the defined label and a value change listener.CheckboxGroup(String label, HasValue.ValueChangeListener<AbstractField.ComponentValueChangeEvent<CheckboxGroup<T>,Set<T>>> listener, T... items)
Constructs a checkbox group with the defined label, a value change listener and populated with the items in the array. -
Uses of CheckboxGroup in com.vaadin.flow.component.checkbox.dataview
Constructors in com.vaadin.flow.component.checkbox.dataview with parameters of type CheckboxGroup Constructor Description CheckboxGroupDataView(SerializableSupplier<DataProvider<T,?>> dataProviderSupplier, CheckboxGroup<T> checkboxGroup)
Constructs a new DataView.CheckboxGroupDataView(SerializableSupplier<DataProvider<T,?>> dataProviderSupplier, CheckboxGroup<T> checkboxGroup, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback)
Constructs a new DataView.CheckboxGroupListDataView(SerializableSupplier<DataProvider<T,?>> dataProviderSupplier, CheckboxGroup<T> checkboxGroup, SerializableBiConsumer<SerializablePredicate<T>,SerializableComparator<T>> filterOrSortingChangedCallback)
Creates a new in-memory data view for Checkbox Group and verifies the passed data provider is compatible with this data view implementation.CheckboxGroupListDataView(SerializableSupplier<DataProvider<T,?>> dataProviderSupplier, CheckboxGroup<T> checkboxGroup, SerializableConsumer<IdentifierProvider<T>> identifierChangedCallback, SerializableBiConsumer<SerializablePredicate<T>,SerializableComparator<T>> filterOrSortingChangedCallback)
Creates a new in-memory data view for Checkbox Group and verifies the passed data provider is compatible with this data view implementation.
-