AW

Results 9 comments of AW

I simply put the posts from the example site on my but it didn't work as you can see here below.. ![Screenshot (1)](https://user-images.githubusercontent.com/24782390/90262559-d6abe580-de24-11ea-9805-b0a523c55d8b.png)

Sorry, I type wrong. I fix now and the problem persist.

It works perfect for me!

For those that want to escape the HTML inside the text parameter, I solve this using this JQuery function. ``` $('#id-your-header .card-text').each(function() { var x=$(this).text(); $(this).html(x); }); ```

I tried the follow code and is still not working, any idea when it will be fixed? Thank you I used the Posit example. ``` library(shiny) library(bs4Dash) ui

I have for the map all the lat/lon by project and in the reactable I have the aggregation of those project. It would be nice if I could select the...

- A cool example in the anwser https://stackoverflow.com/questions/70843664/is-there-a-way-to-prevent-observeevent-from-triggering-while-still-entering-te

I am having the same issue here - I am working with dates like 2022-01-01, 2022-04-01 and when I use the updateAirDateInput it is lagging all those dates one month...

@barisguven I just figure it out. To solve the problem when you update the date you need to do something like this ``` shinyWidgets::updateAirDateInput("input", value = "2022-01-01 06:00:00") ``` If...