Uses of Class
org.dwcj.controls.combobox.ComboBox
Packages that use ComboBox
Package
Description
-
Uses of ComboBox in org.dwcj.controls.combobox
Methods in org.dwcj.controls.combobox that return ComboBoxModifier and TypeMethodDescriptionComboBox.addClassName(String selector) Add an item into the comboboxAdds a map of items to the already-existing items within the ComboBoxComboBox.close()closes the ComboBox dropdown listComboBox.deselect()Deselects any selected items within the ComboBoxComboBox.insertItemAt(Object key, String item, Integer index) Allows user to insert an item at a specific index within the comboBoxComboBox.insertItemsAt(Map<Object, String> items, Integer index) Inserts a map of items into the ComboBox at the desired indexComboBox.onClose(Consumer<ComboBoxCloseEvent> callback) Sets the behavior to be executed when the ComboBox control is closedComboBox.onOpen(Consumer<ComboBoxOpenEvent> callback) Sets the behavior to be executed when the ComboBox control is openedComboBox.onSelect(Consumer<ComboBoxSelectEvent> callback) Register a callback for selecting an item within the boxComboBox.open()opens the ComboBox dropdown listComboBox.removeAllItems()Removed all of the items within a ComboBoxComboBox.removeClassName(String selector) ComboBox.removeItemAt(Integer index) Removed an item at the given index (0 based) within the ComboBoxComboBox.selectIndex(Integer index) Selects the item at the given index within the ComboBoxComboBox.setAttribute(String attribute, String value) ComboBox.setEnabled(Boolean enabled) ComboBox.setExpanse(ComboBox.Expanse expanse) ComboBox.setFocusable(Boolean focusable) set the list of items into the comboBoxComboBox.setMaximumRowCount(Integer max) Sets the maximum number of rows allowed within the ComboBoxComboBox.setReadOnly(Boolean readOnly) ComboBox.setTabTraversable(Boolean traversable) ComboBox.setTextAlignment(TextAlignable.Alignment textAlignment) Sets the text at one of the specific items at the given index within the ComboBoxComboBox.setTooltipText(String text) ComboBox.setVisible(Boolean visible) -
Uses of ComboBox in org.dwcj.controls.combobox.events
Methods in org.dwcj.controls.combobox.events that return ComboBoxModifier and TypeMethodDescriptionComboBoxChangeEvent.getControl()ComboBoxCloseEvent.getControl()ComboBoxOpenEvent.getControl()ComboBoxSelectEvent.getControl()Constructors in org.dwcj.controls.combobox.events with parameters of type ComboBoxModifierConstructorDescriptionComboBoxChangeEvent(ComboBox comboBox) ComboBoxCloseEvent(ComboBox cComboBox) ComboBoxOpenEvent(ComboBox cComboBox) ComboBoxSelectEvent(ComboBox cComboBox) -
Uses of ComboBox in org.dwcj.controls.combobox.sinks
Constructors in org.dwcj.controls.combobox.sinks with parameters of type ComboBoxModifierConstructorDescriptionComboBoxChangeEventSink(ComboBox cb, Consumer<ComboBoxChangeEvent> callback) ComboBoxCloseEventSink(ComboBox cb, Consumer<ComboBoxCloseEvent> callback) ComboBoxOpenEventSink(ComboBox cb, Consumer<ComboBoxOpenEvent> callback) ComboBoxSelectEventSink(ComboBox cb, Consumer<ComboBoxSelectEvent> callback)