Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Render image inside dynamically created UI? #6

Open
dcaud opened this issue Oct 11, 2020 · 3 comments
Open

Render image inside dynamically created UI? #6

dcaud opened this issue Oct 11, 2020 · 3 comments

Comments

@dcaud
Copy link

dcaud commented Oct 11, 2020

Would it be be possible to render image inside a UI element that is dynamically created?

Seems like a little javascript would need to be changed.

I'm looking for something like this:

library(fabricerin)

ui <- fluidPage(
  actionButton("render", "Put image on Canvas!"),
  uiOutput("gen.in.server")
  
)

server <- function(input, output) {
  
  observeEvent(input$render,{

    output$gen.in.server <- 
      renderUI({
        
        fabric_image(cid = "cimage",
                     cfill = "lightblue",
                     imgId = "Rimg",
                     imgsrc = "https://upload.wikimedia.org/wikipedia/commons/thumb/1/1b/R_logo.svg/724px-R_logo.svg.png")
      })
  })
  
}


shinyApp(ui = ui, server = server)
@feddelegrand7
Copy link
Owner

feddelegrand7 commented Oct 14, 2020

hi @dcaud ,

I've tried the code that you've provided and it worked. Try to click twice on the action button and tell me please if it worked.

Best.

@dcaud
Copy link
Author

dcaud commented Oct 14, 2020

Nice find! Interesting that clicking twice works. It seems like a bug somewhere and I'm not sure how to fix it.

@feddelegrand7
Copy link
Owner

Indeed, there is a problem somewhere but can't find it. I won't clause this issue in case someone can fix it.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants