Reputation: 903
Is it possible to have info bubble/text to be displayed for when hover over certain text or UI elements in a shiny UI?
If not possible with the shiny
package, what kind of html/javascript object could I have rendered with renderUI()
to have such info text?
Thank you
Upvotes: 1
Views: 1318
Reputation: 10215
Joe Cheng has written a help-popup function
https://gist.github.com/jcheng5/5913297
From Claude Boivin on the shiny help list:
div(class="row-fluid",
div(class="span8",h4("subject")),
div(class="span1",helpPopup("help_title,includeHTML("www/help_entrer_fait.html"),placement='bottom',trigger='click'))
Upvotes: 1