mod_helpPopover | R Documentation |
A shiny Module.
mod_helpPopover_ui(id)
mod_helpPopover_server(id, title, content)
id |
A |
title |
A |
content |
A |
NA
library(shiny)
ui <- mod_helpPopover_ui("help")
server <- function(input, output, session) {
mod_helpPopover_server("help",
title = "Foo",
content = "xxx"
)
}
shinyApp(ui = ui, server = server)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.