shinyjs
パッケージはonclick
、あなたがよ、あなたのニーズを調整することができますので、内蔵のonevent
を経由してこの機能を備えています。以下の例はhttps://github.com/daattali/shinyjs/issues/33
if (interactive()) {
library(shiny)
shinyApp(
ui = fluidPage(
useShinyjs(), # Set up shinyjs
actionButton("date", "date"),
actionButton("coords", "coords"),
actionButton("disappear", "disappear"),
actionButton("text", "text")
),
server = function(input, output) {
onclick("date", alert(date()))
onclick("coords", function(event) { alert(event) })
onevent("mouseenter", "disappear", hide("text"))
onevent("mouseleave", "disappear", show("text"))
}
)
}
から取得しました。ありがとうございます。それが私の必要なものです。良い一日を! – Mily