Skip to contents

A combox box, a dropdown input.

Usage

combo_box(id, ...)

combo(..., value = NULL)

combo_group(...)

Arguments

id

The id of the combo box.

...

Any named properties.

value

The value of the combo.

Details

See combo box

Examples

combo_box(
  id = "combo",
  placeholder = "A dropdown",
  combo(text = "item1"),
  combo(text = "item2"),
  combo(text = "item3")
)
#> <ui5-combobox id="combo" placeholder="A dropdown">
#>   <ui5-cb-item text="item1"></ui5-cb-item>
#>   <ui5-cb-item text="item2"></ui5-cb-item>
#>   <ui5-cb-item text="item3"></ui5-cb-item>
#> </ui5-combobox>