Rshinyを使用して、selectInputアイテムをファイルを開くアクションボタンにリンクすることは可能ですか? アクションボタンの onclick 引数を調整してそれを実現したいと思います。
再現可能な例を以下に示します。
「www」フォルダに「file_1.pdf」と「file_2.pdf」があるとすると、選択した入力選択に対応するファイルを開くにはどうすればよいですか?
library(shinydashboard)
library(shiny)
ui <- dashboardPage(
dashboardHeader(title = "Open file app"),
dashboardSidebar(),
dashboardBody(
fluidRow(
selectInput(inputId = "file_choice",label = "Choose the file to open",choices = c("file_1","file_2")),
actionButton("bell","Open the selected file", class = "btn action-button",onclick = "window.open('file_1.pdf')")) #onclick argument must be adapted
)
)
server <- function(input, output) {}
shinyApp(ui, server)
どうもありがとう!