Victor Perrier

Results 370 comments of Victor Perrier

Thanks for reporting, I've updated the example. Indeed, I'm agree, I've updated the behavior to expand parent node as well. Victor

Thanks ! An argument was missing, re-install grom GitHub then try : ```r library(shiny) library(shinypop) library(htmltools) ui

Hi, Thanks ! Have you an example of usage ? Does this work to eval the whole config ? I would have done it element by element My reference is...

Hi, You can collapse levels from your server with `collapseTreeview()`. There's two solutions : * Collapse all treeview with: ```r collapseTreeview("tree") # "tree" is inputId of the widget ``` *...

If you re-install from GitHub you will have a `updateTreeview` function to update selected value. To clear the selection use `character(0)`, note that this doesn't work if you have set...

Hello! Ah yes hard to target the header of shinydashboard, here's a not perfect way to do it: ```r library(shiny) library(shinydashboard) library(particlesjs) ui

Hello, Thanks! Yes that's possible with `shinyjs`, it depends if you use a custom target or not, if not you have to provide an Id, the particles div will have...

Hello, There's an issue initializing particles when DOM elements are not completely initialized. I added a `timeout` argument to wait before creating particles. Re-install package from GitHub, and try example...

Here https://github.com/stla/jsTreeR/blob/master/R/jstree.R#L458 you load Bootstrap 3 (Shiny default) as dependency, but `bslib::page_navbar()` by default load Bootstrap 5. A priori, when the `renderUI` is run, the Bootstrap theme of the server...

I think you can use `html = TRUE` for fixing the problem.