Skip to contents

The badge() component consists of a list box with items and a text field allowing the user to either type a value directly into the text field, or choose from the list of existing items.

See the official documention for multi combo box, for all the correct props.

Examples

multi_combo_box(
  id = "multicombo",
  multi_combo(value = "item1", text = "item 1"),
  multi_combo(value = "item2", text = "item 2"),
  multi_combo(value = "item3", text = "item 3")
)
multi_combo_box(
  id = "multicombo",
  multi_combo_group(text = "Group 1"),
  multi_combo(value = "item1", text = "item 1"),
  multi_combo(value = "item2", text = "item 2"),
  multi_combo(value = "item3", text = "item 3"),
  multi_combo_group(text = "Group 2"),
  multi_combo(value = "item4", text = "item 4"),
  multi_combo(value = "item5", text = "item 5"),
  multi_combo(value = "item6", text = "item 6")
)