-
-
Save RAPLER/a84f5d3896356c5a09eb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
helpPopup <- function(title, content, | |
placement=c('right', 'top', 'left', 'bottom'), | |
trigger=c('click', 'hover', 'focus', 'manual')) { | |
tagList( | |
singleton( | |
tags$head( | |
tags$script("$(function() { $(\"[data-toggle='popover']\").popover(); })") | |
) | |
), | |
tags$a( | |
href = "#", class = "btn btn-mini", `data-toggle` = "popover", | |
title = title, `data-content` = content, `data-animation` = TRUE, | |
`data-placement` = match.arg(placement, several.ok=TRUE)[1], | |
`data-trigger` = match.arg(trigger, several.ok=TRUE)[1], | |
tags$i(class="icon-question-sign") | |
) | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thank you fot this nice function, generally works perfectly fine. Are there changes in the code required when setting the function within the server.R using renderUI and calling it in the ui.R with uiOutput? I get the boostrap symbol however the popup text is not shown following the described approach... I am not really familiar with js so I would appreciate any help. Thanks