ijlyttle / bsplus

Shiny and R Markdown addons to Bootstrap 3
http://ijlyttle.github.io/bsplus/
Other
147 stars 23 forks source link

Usage of bs_embed_popover inside module #96

Closed tobiasblasberg closed 3 years ago

tobiasblasberg commented 3 years ago

I would like to use shiny_iconlink and bs_embed_popover in a module, but although the icon is displayed, the hover is not appearing.

Is there any soution to display the popover from a module?

box(title = tagList(span( "Box Title"), 
span(bsplus::shiny_iconlink() %>%
            bsplus::bs_embed_popover(
              content ="Some info text.", placement = "right", trigger = "hover"
            ))),
 solidHeader = FALSE, collapsible = FALSE, width = 12, 
...
)

Thank you and best, Tobias