bathyscapher
bathyscapher
For Debian and Ubuntu, the package `jags` is **definetly available** through APT. Install it via: ``` sudo apt install jags ``` Then, in R ``` install.packages("rjags") ``` ...and there you...
updateSliderInput only updates graphically, but not the actual value while evaluating observeEvent()
@bklingen Indeed, that would be a solution and is what we implemented as a workaround in our Shiny app. Btw, if you feel like [answering on SO](https://stackoverflow.com/questions/73336740/updatesliderinput-only-updates-graphically-but-not-the-actual-value), go ahead. Otherwise...
updateSliderInput only updates graphically, but not the actual value while evaluating observeEvent()
@ismirsehregal That would work for sure, if it wouldn't be crucial that the execution happens only on trigger. In this example, it actually doesn't matter, you're totally right. But for...
updateSliderInput only updates graphically, but not the actual value while evaluating observeEvent()
@ismirsehregal hmm, not sure. What do you think is the benefit of using `bindEvent()` over `eventReactive()`? Anyway--correct me if I'm wrong, but the slider value `input$var` is still not reset...
updateSliderInput only updates graphically, but not the actual value while evaluating observeEvent()
@ismirsehregal Ah, okay, I see... The thing is, in the MWE the execution is only run on trigger (through the both `observeEvent()`s). So, I was a bit confused by your...
I just run into the very same problem. Have you found a solution in the end?
Hey mbacou, thanks for your response. Good idea to start with. I disabled network cache in Chromium and Firefox without any changes in the behaviour in the map (i.e. the...
We solved this via inverting the polygon (in your case, the Texas shapefile) in QGIS. For this, you need a second layer that surrounds your polygon. For example, you could...
In case it might be helpful to someone: here is a version of [@hugo-pa's code](https://github.com/rstudio/DT/issues/769#issuecomment-1491946232) with the first column fixed to the left margin and a footer callback: ``` suppressPackageStartupMessages({...
Hey @gadenbuie, great, thank you for the prompt response. I would have totally overlooked bslib, great, that there is a quite simple solution for using recent Bootstrap! Just one more...