com.vaadin.ui.
Class ComboBox
java.lang.Object
com.vaadin.ui.AbstractComponent
com.vaadin.ui.AbstractField
com.vaadin.ui.AbstractSelect
com.vaadin.ui.Select
com.vaadin.ui.ComboBox
All Implemented Interfaces:
Buffered, BufferedValidatable, Container, Container.ItemSetChangeListener, Container.ItemSetChangeNotifier, Container.PropertySetChangeListener, Container.PropertySetChangeNotifier, Container.Viewer, Property, Property.Editor, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer, Validatable, Action.ShortcutNotifier, FieldEvents.BlurNotifier, FieldEvents.FocusNotifier, MethodEventSource, Paintable, Sizeable, VariableOwner, AbstractSelect.Filtering, Component, Component.Focusable, Field, Serializable, EventListener
- extends Select
public class ComboBox
A filtering dropdown single-select. Suitable for newItemsAllowed, but it's turned of by default to avoid mistakes. Items are filtered based on user input, and loaded dynamically ("lazy-loading") from the server. You can turn on newItemsAllowed and change filtering mode (and also turn it off), but you can not turn on multi-select mode.
See Also:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractField |
---|
AbstractField.FocusShortcut, AbstractField.ReadOnlyStatusChangeEvent |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractComponent |
---|
AbstractComponent.ComponentErrorEvent, AbstractComponent.ComponentErrorHandler |
Nested classes/interfaces inherited from interface com.vaadin.data.Container |
---|
Container.Editor, Container.Filter, Container.Filterable, Container.Hierarchical, Container.Indexed, Container.ItemSetChangeListener, Container.ItemSetChangeNotifier, Container.Ordered, Container.PropertySetChangeListener, Container.PropertySetChangeNotifier, Container.SimpleFilterable, Container.Sortable, Container.Viewer |
Nested classes/interfaces inherited from interface com.vaadin.ui.Field |
---|
Field.ValueChangeEvent |
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered |
---|
Buffered.SourceException |
Nested classes/interfaces inherited from interface com.vaadin.data.Property |
---|
Property.ConversionException, Property.Editor, Property.ReadOnlyException, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer |
Field Summary |
---|
Fields inherited from class com.vaadin.ui.Select |
---|
pageLength |
Fields inherited from class com.vaadin.ui.AbstractSelect |
---|
ITEM_CAPTION_MODE_EXPLICIT, ITEM_CAPTION_MODE_EXPLICIT_DEFAULTS_ID, ITEM_CAPTION_MODE_ICON_ONLY, ITEM_CAPTION_MODE_ID, ITEM_CAPTION_MODE_INDEX, ITEM_CAPTION_MODE_ITEM, ITEM_CAPTION_MODE_PROPERTY, itemIdMapper, items |
Fields inherited from interface com.vaadin.ui.AbstractSelect.Filtering |
---|
FILTERINGMODE_CONTAINS, FILTERINGMODE_OFF, FILTERINGMODE_STARTSWITH |
Constructor Summary | |
---|---|
ComboBox()
|
|
ComboBox(String caption)
|
|
ComboBox(String caption,
Collection<?> options)
|
|
ComboBox(String caption,
Container dataSource)
|
Method Summary | |
---|---|
String |
getInputPrompt()
Gets the current input prompt. |
boolean |
isTextInputAllowed()
Returns true if the user can enter text into the field to either filter the selections or enter a new value if AbstractSelect.isNewItemsAllowed()
returns true. |
void |
paintContent(PaintTarget target)
Paints the content of this component. |
void |
setInputPrompt(String inputPrompt)
Sets the input prompt - a textual prompt that is displayed when the select would otherwise be empty, to prompt the user for input. |
void |
setMultiSelect(boolean multiSelect)
Sets the multiselect mode. |
void |
setTextInputAllowed(boolean textInputAllowed)
Sets whether it is possible to input text into the field or whether the field area of the component is just used to show what is selected. |
Methods inherited from class com.vaadin.ui.Select |
---|
addListener, addListener, buildFilter, changeVariables, containerItemSetChange, getColumns, getFilteredOptions, getFilteringMode, getOptionsWithFilter, isMultiSelect, isScrollToSelectedItem, removeListener, removeListener, setColumns, setFilteringMode, setScrollToSelectedItem |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.vaadin.ui.Field |
---|
getDescription, setCaption, setDescription |
Constructor Detail |
---|
ComboBox
public ComboBox()
ComboBox
public ComboBox(String caption,
Collection<?> options)
ComboBox
public ComboBox(String caption,
Container dataSource)
ComboBox
public ComboBox(String caption)
Method Detail |
---|
setMultiSelect
public void setMultiSelect(boolean multiSelect)
- Overrides:
setMultiSelect
in classSelect
- Parameters:
multiSelect
- the New value of property multiSelect.- See Also:
AbstractSelect.setMultiSelect(boolean)
Description copied from class: AbstractSelect
Sets the multiselect mode. Setting multiselect mode false may loose selection information: if selected items set contains one or more selected items, only one of the selected items is kept as selected.
getInputPrompt
public String getInputPrompt()
- Returns:
- the current input prompt, or null if not enabled
- See Also:
setInputPrompt(String)
Gets the current input prompt.
setInputPrompt
public void setInputPrompt(String inputPrompt)
- Parameters:
inputPrompt
- the desired input prompt, or null to disable
Sets the input prompt - a textual prompt that is displayed when the select would otherwise be empty, to prompt the user for input.
paintContent
public void paintContent(PaintTarget target)
throws PaintException
- Overrides:
paintContent
in classSelect
- Parameters:
target
- the Paint Event.- Throws:
PaintException
- if the paint operation failed.
Description copied from class: Select
Paints the content of this component.
setTextInputAllowed
public void setTextInputAllowed(boolean textInputAllowed)
- Parameters:
textInputAllowed
- true to allow entering text, false to just show the current selection- See Also:
isTextInputAllowed()
Sets whether it is possible to input text into the field or whether the
field area of the component is just used to show what is selected. By
disabling text input, the comboBox will work in the same way as a
NativeSelect
isTextInputAllowed
public boolean isTextInputAllowed()
- Returns:
Returns true if the user can enter text into the field to either filter
the selections or enter a new value if AbstractSelect.isNewItemsAllowed()
returns true. If text input is disabled, the comboBox will work in the
same way as a NativeSelect