Skip to content
Discussion options

You must be logged in to vote

Hi @shahreyar-abeer,

please have take a look at ComboBox component. It allows you to search an option by typing and matches an option to typed text.

library(shiny)
library(shiny.fluent)

shinyApp(
  ui = fluentPage(
    ComboBox.shinyInput(
      inputId = "comboBox",
      options = list(
        list(key = "A", text = "Option A"),
        list(key = "B", text = "Option B"),
        list(key = "C", text = "Option C")
      )
    )
  ),
  server = function(input, output) {
    
  }
)

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@shahreyar-abeer
Comment options

Answer selected by shahreyar-abeer
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants