Problem viewing a pdf file in a shiny app

...0

To view a pdf file and my shiny app, I use the following code on the server side, which everyone recommends:

output$pdf_info_exper <- renderUI({
selected_Exper = input$select_data
pdf_path = get_pdfExper (selected_Exper,base_dir='.')
tags$iframe(style="height:600px; width:100%", src= pdf_path, type="application/pdf")
#tags$embed( src=pdf_path, style="height:600px; width:100%", type="application/pdf")
})
The problem is that when I do it, it skips my app adobe reader directly and I haven't embedded it in my app. when run the app in the browser if the pdf is embedded in the app, I understand,I would like to know how to embed the pdf viewer in my app without the adoba/reader jumping...

I accept any suggestion, thanks..

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.