this is my UI. R
shinyUI(fluidPage(titlePanel("Getting Iframe"), sidebarLayout( sidebarPanel( fluidRow( column(6, selectInput("Member", label=h5("Choose a option"), choices=c('BCRA1','FITM2')) ))), mainPanel(fluidRow( column(3, htmlOutput("frame")) ) ) )))
This is my server.R
library(shiny) members <- data.frame(name=c("Name 1", "Name 2"), nr=c('BCRA1','FITM2')) shinyServer(function(input, output) { loadframe <- reactive({ validate( need(input$Member, "Member input is null!!") ) query <- members[which(members$nr==input$Member),2] paste0("http://news.scibite.com/scibites/news.html?q=GENE$",query) }) output$frame <- renderUI({ tags$iframe(src=loadframe(), height=600, width=535) }) })
I want to get the iframe from the web page but its printing blank any help on this would be appreciated ?
library(shiny) members <- data.frame(name=c("Name 1", "Name 2"), nr=c('BCRA1','FITM2')) ui <- fluidPage(titlePanel("Getting Iframe"), sidebarLayout( sidebarPanel( fluidRow( column(6, selectInput("Member", label=h5("Choose a option"),choices=c('BCRA1','FITM2')) ))), mainPanel(fluidRow( htmlOutput("frame") ) ) )) server <- function(input, output) { observe({ query <- members[which(members$nr==input$Member),2] test <<- paste0("http://news.scibite.com/scibites/news.html?q=GENE$",query) }) output$frame <- renderUI({ input$Member my_test <- tags$iframe(src=test, height=600, width=535) print(my_test) my_test }) } shinyApp(ui, server)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With