Get the vector of names selected in the selectizeInput

selectize_names(id)

Arguments

id

inputId of the selectizeInput

Value

return a vector of the item names selected

Author

Marie Bellier, Massimo Finini, Meri Likoska, Vania Rodrigues Telo Ramos, Xavier Renger

Examples


#let's say the user selected those anime in the app
selectize <- c("Naruto", "Death Note", "One Piece")

#we will then recover the following with the function
u <- selectize_names(selectize)

print(u)
#> [1] "Naruto"     "Death Note" "One Piece"