Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

RShiny print current page

Tags:

r

shiny

How can I print the current page in R shiny web applications? It is possible in HTML by using the command of window.print();. But I could not find and implement its correspondent R Shiny command. What is on my mind is something like the following? How can I call an html command in SERVER?

actionButton("print", "PRINT")

server <- function(input, output) {

        observeEvent(input$print, {
          window.print();
        })
}
like image 854
BRCN Avatar asked Dec 24 '22 22:12

BRCN


1 Answers

This can be done using shinyjs package to call a js function.

library(shiny)
library(shinyjs)

jsCode <- 'shinyjs.winprint = function(){
window.print();
}'

ui <- shinyUI(fluidPage(
  useShinyjs(),
  extendShinyjs(text = jsCode, functions = c("winprint")),
  actionButton("print", "PRINT")
  ))



server <- shinyServer(function(input, output) {
  
  observeEvent(input$print, {
    js$winprint()
   })
})


shinyApp(ui, server)
like image 66
SBista Avatar answered Jan 03 '23 19:01

SBista