I'm trying to add a hover-over text to my shiny app. Specifically, I want to add it to the label of the virtualSelectInput (which is the label above the drop-down selection).
I have found posts on how to add hover-over text to the CHOICES in the drop down selection, but so far I haven't been able to find anything that shows how to do this with the label itself. Any ideas would be greatly appreciated!
Relevant part of my code:
div(
useShinyjs(),
virtualSelectInput(
inputId = ns("benchmark_population"),
label = "Select Benchmark Population: ",
choices = NULL,
selected = NULL,
multiple = FALSE,
search = FALSE,
placeholder = "Benchmark Population"
),
So far, I've tried various approaches such as shinyWidgets::pickerInput instead of virtualSelectInput and then shiny::p("This is the sub-title for the benchmark population selection"), neither of which are doing the trick.