Skip to content

feature request: many factor select support server #24

@Liripo

Description

@Liripo

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 request

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions