Hi I came a very similar issue as was posted here: Updating shiny input (visually) using JavaScript - shiny - RStudio Community.
I'm using Shiny.setInputValue()
to update a slider with a value from a parent site. That is working internally. But the visual representation of the slider gets no visual update. Is there an attribute I cann add to my Shiny.setInputValue()
call that forces the update? Or a JavaScript command that updates the slider visually I can add afterwards?
A workaround might be defining a reactive value and change that instead and than using updateSliderInput()
on the server code to update the slider. But this seems pritty cumbersome if we have multiple visual inputs (of different types). (I had a look on the table example.)
I wonder why a visual update is not the default case anyway.
Here is a link to the app I'm currently working on: Old Faithful Geyser Data (shinyapps.io)