R Shiny - 自定义选项不适用于 tippy::with_tippy()
R Shiny - customisation options not working for tippy::with_tippy()
我正在尝试使用 tippy
包将工具提示定位到 textInput
的右侧,但是它不起作用:
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
上尝试 运行 应用程序,但无济于事。
您的代码没有 运行 因为 with_tippy
不是有效函数。
下面的代码应该正确显示工具提示的位置。 重要提示: tippy_this(elementId)
指回 textInput(inputId)
命名为 THISinput 此处为清楚起见。
而不是将 textInput
实际包装在 tippy_this
中,我们只是返回使用 elementId
.
的输入
library(shiny)
library(tippy)
shinyApp(
ui = fluidPage(
textInput(inputId = "THISinput", "input with tooltip"),
tippy_this(elementId = "THISinput", tooltip = "Hovertext for 'THISinput' here", placement="right")
),
server = function(input, output) {}
)
我正在尝试使用 tippy
包将工具提示定位到 textInput
的右侧,但是它不起作用:
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
上尝试 运行 应用程序,但无济于事。
您的代码没有 运行 因为 with_tippy
不是有效函数。
下面的代码应该正确显示工具提示的位置。 重要提示: tippy_this(elementId)
指回 textInput(inputId)
命名为 THISinput 此处为清楚起见。
而不是将 textInput
实际包装在 tippy_this
中,我们只是返回使用 elementId
.
library(shiny)
library(tippy)
shinyApp(
ui = fluidPage(
textInput(inputId = "THISinput", "input with tooltip"),
tippy_this(elementId = "THISinput", tooltip = "Hovertext for 'THISinput' here", placement="right")
),
server = function(input, output) {}
)