Modifier and Type | Method and Description |
---|---|
CheckboxGroupListDataView<T> |
CheckboxGroup.setItems(ListDataProvider<T> dataProvider) |
Modifier and Type | Method and Description |
---|---|
void |
ComboBox.setDataProvider(ComboBox.ItemFilter<T> itemFilter,
ListDataProvider<T> listDataProvider)
Deprecated.
use instead
ComboBox.setItems(ItemFilter, ListDataProvider)
which provide access to ComboBoxListDataView |
void |
ComboBox.setDataProvider(ListDataProvider<T> listDataProvider)
Deprecated.
use instead one of the
setItems methods which provide
access to ComboBoxListDataView |
ComboBoxListDataView<T> |
ComboBox.setItems(ComboBox.ItemFilter<T> itemFilter,
ListDataProvider<T> listDataProvider)
Sets a ListDataProvider for this combo box and a filtering function for
defining which items are displayed when user types into the combo box.
|
ComboBoxListDataView<T> |
ComboBox.setItems(ListDataProvider<T> dataProvider) |
Modifier and Type | Method and Description |
---|---|
GridListDataView<T> |
Grid.setItems(ListDataProvider<T> dataProvider) |
Modifier and Type | Method and Description |
---|---|
ListBoxListDataView<ITEM> |
ListBoxBase.setItems(ListDataProvider<ITEM> listDataProvider)
Sets a ListDataProvider for the ListBox to use and returns a
ListDataView that provides information and allows operations on
the items. |
Modifier and Type | Method and Description |
---|---|
RadioButtonGroupListDataView<T> |
RadioButtonGroup.setItems(ListDataProvider<T> dataProvider) |
Modifier and Type | Method and Description |
---|---|
SelectListDataView<T> |
Select.setItems(ListDataProvider<T> dataProvider) |
Modifier and Type | Method and Description |
---|---|
GridListDataView<T> |
TreeGrid.setItems(ListDataProvider<T> dataProvider)
|
Modifier and Type | Class and Description |
---|---|
static class |
DataCommunicator.EmptyDataProvider<T1>
In-memory data provider with no items.
|
Modifier and Type | Method and Description |
---|---|
static <T> ListDataProvider<T> |
DataProvider.fromStream(Stream<T> items)
Creates a new data provider from the given stream.
|
protected ListDataProvider<T> |
AbstractListDataView.getDataProvider() |
static <T> ListDataProvider<T> |
DataProvider.ofCollection(Collection<T> items)
Creates a new data provider backed by a collection.
|
static <T> ListDataProvider<T> |
DataProvider.ofItems(T... items)
Creates a new data provider from the given items.
|
Modifier and Type | Method and Description |
---|---|
V |
HasListDataView.setItems(ListDataProvider<T> dataProvider)
Sets a ListDataProvider for the component to use and returns a
ListDataView that provides information and allows operations on
the items. |
Copyright © 2022. All rights reserved.