## From ui.R: Adds a popover to element with inputId = "someInput"
## with title, "Popover", and text, "This is an input.", that appears to the left on click.
bsPopover(id = "someInput", title="Popover", content = "This is an input",
placement = "left", trigger = "click")
## From server.R: Add the same popover as above
addPopover(session, id="someInput", title="popover", content = "This is an input.",
placement = "left", trigger = "click")
Run the code above in your browser using DataLab