我正在尝试将工具提示放置在textInput
使用tippy
包的右侧,但是,它不起作用:
library(shiny)
library(tippy)
shinyApp(
ui = fluidPage(
with_tippy(textInput("input", "input with tooltip"), "Input text", placement = "right")
),
server = function(input, output) {}
)
和选项似乎也position = 'right'
不起作用arrow = 'true'
。theme = 'light'
我想知道这是否是浏览器兼容性问题,或者我是否缺少一些 CSS 依赖项?我曾尝试在 上运行该应用程序Chrome v82.0.4068.5
,Firefox 73.0.1
但Microsoft Edge 44.18362.449.0
无济于事。