We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
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)
The text was updated successfully, but these errors were encountered:
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.
Sorry, something went wrong.
Nice find! Interesting that clicking twice works. It seems like a bug somewhere and I'm not sure how to fix it.
Indeed, there is a problem somewhere but can't find it. I won't clause this issue in case someone can fix it.
No branches or pull requests
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:
The text was updated successfully, but these errors were encountered: