I'm trying to add a tooltip to each sub option in a pickerinput dropdown menu. I've tried adapting the function selectizeTooltip from reactive radioButtons with tooltipBS in shiny but I'm afraid I don't know enough to adapt it correctly.
Unfortunately simply doing
pickerInput("pobrezavar1", label = NULL,
choices = c("Riesgo de pobreza (60%)"= "Pobreza_60_",
"Extrema pobreza (40%)"= "Pobreza_40_"
#"Pobreza según definición EJ-GV"= "Pobreza_GV_"
),
selected = NULL,
options = list(`noneSelectedText`="Escoge"),
width = "100%"),
selectizeTooltip(id="pobrezavar1", choice = "Pobreza_60_", title = "Tooltip for c", placement = "right", trigger = "hover"),
does not work.
App I'm working on (you'll see that I've got tooltips on radioGroupButtons working correctly in the last row of buttons): http://iseak.shinyapps.io/Mapa2/
Thank you in advance for any tips you might have.