feature request: many factor select support server
Open
enhancement
- Dominant language
- R
- Stars
- 30
- Forks
- 15
- PR merge metrics
- No merged PRs in 30d
Description
This package is great!
When there are many options, such as more than 20000, provide server support.
for example:
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.
```R
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)
```
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.