While using the features of shinyBS, I have found that using bsTooltip in conjunction with an absolutePanel where draggable = TRUE results in the tooltip not appearing. Here is a minimal reproducable example:
library(shiny)
library(shinyBS)
ui <- basicPage(
absolutePanel(
top = 100, left = 100, draggable = TRUE,
p("Just an absolutePanel with draggable = TRUE")
),
mainPanel(
bsButton("button", "This is a button."),
bsTooltip("button", "This is a tooltip.")
)
)
server <- function(input, output){
}
shinyApp(ui = ui, server = server)
Note that if draggable = FALSE, then the tooltip works no problem. There does not seem to be this same problem with bsPopover.
While using the features of
shinyBS
, I have found that usingbsTooltip
in conjunction with an absolutePanel wheredraggable = TRUE
results in the tooltip not appearing. Here is a minimal reproducable example:Note that if
draggable = FALSE
, then the tooltip works no problem. There does not seem to be this same problem withbsPopover
.