thothal

Results 5 comments of thothal

I just composed an answer on [SO](https://stackoverflow.com/questions/68080033/shinydashboard-box-collapse/68133165#68133165) for a similar problem and as a workaround you can listen to the `shown.bs.collapse` event and re-trigger it (after some delay) for `shiny-bound-output`...

Took a while to track the error down, but here is a minimal reprex: ```r library(shiny) library(shinybulma) shinyApp(bulmaPage(bulmaNavbar()), function(...) {}) ``` So it is the `bulmaNavbar` item.

I tried that already, this is not the case. My guess is that `bulmaJS` requires a `.navbar-burger` and in abseince raises this error. Try: ```r shinyApp( bulmaPage( bulmaNavbar( bulmaNavbarBurger() )...

Thanks for the feedback. A fair point, but I guess it deserves to be explicitely mentioned in some of the docs then, b/c it took me by surprise and quite...

Well, I did read the documentation at https://pkgs.rstudio.com/flexdashboard/articles/using.html quite thoroughly and any section title *Non output producing chunks* would have caught my attention 😉 So I guess any hint there...