ComboBoxListDataView<TItem> |
ComboBoxBase.getListDataView() |
Gets the list data view for the ComboBox.
|
ComboBoxListDataView<TItem> |
ComboBoxBase.setItems(ComboBox.ItemFilter<TItem> itemFilter,
ListDataProvider<TItem> 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<TItem> |
ComboBoxBase.setItems(ComboBox.ItemFilter<TItem> itemFilter,
Collection<TItem> items) |
Sets the data items of this combo box and a filtering function for
defining which items are displayed when user types into the combo box.
|
ComboBoxListDataView<TItem> |
ComboBoxBase.setItems(ComboBox.ItemFilter<TItem> itemFilter,
TItem... items) |
Sets the data items of this combo box and a filtering function for
defining which items are displayed when user types into the combo box.
|
ComboBoxListDataView<TItem> |
ComboBoxBase.setItems(ListDataProvider<TItem> dataProvider) |
|
ComboBoxListDataView<TItem> |
ComboBoxBase.setItems(Collection<TItem> items) |
Sets the items from the given Collection and returns a
ListDataView that provides information and allows operations on
the items.
|