We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
popover()
Is it possible to add html tags inside popover()?
library(shiny) library(bs4Dash) shinyApp( ui = dashboardPage( help = TRUE, header = dashboardHeader(), sidebar = dashboardSidebar(), controlbar = dashboardControlbar(), footer = dashboardFooter(), title = "Popover UI", body = dashboardBody( popover( actionButton("goButton", "Click me to see the popover!"), title = "My popover", placement = "right", # html = TRUE # POSSIBLE ARGUMENT TO ADD content = "Lorem <a target=_blank href='https://github.com/RinteRface'>ipsum</a>." ) ) ), server = function(input, output) {} )
Maybe an argument could be added in popover(), such as html = TRUE, or something similar (as I saw you implemented it for tooltips in ShinyWidgets: https://rdrr.io/cran/shinyWidgets/man/tooltipOptions.html).
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Is it possible to add html tags inside
popover()
?Reproducible example
Maybe an argument could be added in
popover()
, such as html = TRUE, or something similar (as I saw you implemented it for tooltips in ShinyWidgets: https://rdrr.io/cran/shinyWidgets/man/tooltipOptions.html).The text was updated successfully, but these errors were encountered: