I am working on a small R/shinydashboard project where I have to deal with ID and names: e.g. Warehouse_ID = 1, 2, ... --> Warehouse_Name = Toronto, Berlin,... Since I generated these values from a dataframe, I used:
list_dc_id = unique(dc$id)
and list_dc_name = unique(dc$city)
I want to use list_dc_id
and list_dc_name
to generate the value and shown name with SelectizeInput/updateSelectizeInput(Server=TRUE).
I was able to use checkboxGroupInput with ChoiceValues ChoiceNames to do a check box, however, I am searching for a solution with selectize. I saw some other help pages but unfortunately wasn't able to fully understand the solution. Thank you in advanced!
question from:https://stackoverflow.com/questions/65925415/r-selectizeinput-similar-solution-of-choicevalues-choicenames