How is this UI-element called and does it exist in Shiny?

For my Shiny App I want to include the following UI element, where users can put in text, which is then added to a list, similar to how you can add tags when creating a new topic in this forum.
Here is what I am looking for:

If you know how this UI-element is called and/or wether or not something like this exists for shiny, I´d greatly appreciate your input!

You can get something similar with selectInput() by setting multiple = TRUE

selectInput('id', 'label', options, multiple=TRUE, selectize=TRUE)
1 Like

Thanks, that indeed works for me! Excuse the late reply. Was busy with some other projects last week.
Cheers,
T

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.