openDropdown

Specifies the opening-behavior of the selection dropdown.

The dropdown can be configured to either open

  • lazily (when the user starts typing) or

  • eagerly (when the user focuses the input field).

Both behaviors can be set by calling the respective method lazily or eagerly.

Example:

combobox {
openDropdown.lazily()
// OR
openDropdown.eagerly()
}