1
クリックしただけで、textInputのテキスト値(空白のテキストを置く)を削除したいだけです。私はshinyjsから "updateTextInput"や "onclick"を試してみました。クリックした後にtextInputを更新します
if (interactive()) {
ui <- fluidPage(
titlePanel("test textInput clicking"),
sidebarLayout(
sidebarPanel(
textInput("sequenceTextInput", label = "", value = "Enter sequence
here...")
),
mainPanel(
)
))
server = function(input, output) {
}
shinyApp(ui, server)
}
ありがとうございました!セッションの引数はそれを動作させる! – Grundoc