Zauad Shahreer Abeer

Results 16 comments of Zauad Shahreer Abeer

@lhabegger Nice catch! I was having the same issue and couldn't figure out what's going on. Your solution seems to work nicely!

This is just great! Thanks!

Hi, Thanks for the explanation. I'll wait for it to become a built-in feature. But for now, I could use the example that you mentioned. Please share it at your...

Hey @tyluRp Can I see the implementation of the dropdown with `shiny::selectInputs`?

Oh, yeah I am looking for a dropdown inside the reactable. Looks like it isn't getting much attention here! Thanks for the quick reply though. Appreciate it.

In addition to this, clicking on the slider without changing the slider registers observable events. So even thought the value hasn't changed, `observeEvent(input$slider, {...})` is triggered with the same values.

Also, when using this approach, how should I update the Slider from the server-side? ``` r library(shiny) library(shiny.fluent) shinyApp( ui = tagList( Slider(onChange = setInput("slider", 2), ranged = TRUE, min...

Thanks, that is the solution I had to turn to for the case.

I see, Thanks for pointing that out. So there's nothing to do than just wait I guess?