-
Notifications
You must be signed in to change notification settings - Fork 15
Open
Labels
enhancementNew feature or requestNew feature or request
Description
This package is great!
When there are many options, such as more than 20000, provide server support.
for example: https://shiny.posit.co/r/articles/build/selectize/
Application scenario: For example, if there are some important content, such as gene names, I want to provide a drop-down menu search instead of a text box.
library(shiny)
ui <- fluidPage(
selectizeInput("test",label = NULL,
choices = NULL)
)
server <- function(input, output, session) {
updateSelectizeInput(inputId = "test",choices = paste0("Gene",1:50000),server = TRUE)
}
shinyApp(ui, server)Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request