Hi all,
wanted to check if we can reference the the input selected from selectizeInput can be referenced.
I tried with below but could not get
selectizeInput("cat", "Cat",
choices = c("a","b","c"),options = list(maxItems = 2))
Referencing, if the user selects "a" and "b",
can we input$cat[1] be "a" and input$cat[2] be "b" ???
Similarly, if the users selects "c" and "a",
can we input$cat[1] be "c" and input$cat[2] be "a" ???
Please guide if there is any alternate?