Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When using updateSelectizeInput with server = TRUE NA is dropped as a choice. Setting server = FALSE converts it to "NA".
updateSelectizeInput
server = TRUE
NA
server = FALSE
"NA"
In my eyes this is confusing and should be aligned if possible.
library(shiny) ui <- fluidPage( selectizeInput("variable1", "Variable:", c("a", "b")), selectizeInput("variable2", "Variable:", c("a", "b")) ) server <- function(input, output, session) { updateSelectizeInput(inputId = "variable1", choices = NA, server = TRUE) updateSelectizeInput(inputId = "variable2", choices = NA, server = FALSE) } shinyApp(ui, server)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When using
updateSelectizeInputwithserver = TRUENAis dropped as a choice.Setting
server = FALSEconverts it to"NA".In my eyes this is confusing and should be aligned if possible.
The text was updated successfully, but these errors were encountered: