jsTreeR icon indicating copy to clipboard operation
jsTreeR copied to clipboard

A wrapper of the jQuery plugin `jsTree`.

Results 9 jsTreeR issues
Sort by recently updated
recently updated
newest added

I got some issues while moving nodes right under the root node. Mostly the concat function not working here (on `jstreer.js` at `$el.on("move_node.jstree", function(e, data)`) : ``` var oldPath =...

I have built an App using jsTreeR where the tree structure the user creates is reflected in a mirror dataframe, and that dataframe then drives a series of mathematical operations....

Here is a minimal example of the behavior. If the jstree output is created using `renderUI()` in the server, the updating of the tree does not work as expected. (Sidenote:...

I want to be able to select just one node that may or may not have children and only return that node. Two issues: 1) With "multiple" set to FALSE,...

This problem may be related to issue: https://github.com/stla/jsTreeR/issues/32#issue-2279974750 After switching from shinyTree to jsTreeR, the callbacks from `bslib::navset_pill_list` appears to be broken when rendered through `renderUI`. The desirable behavior is...

After switching from shinyTree to jsTreeR, all other htmlwidgets appear to have their styling set to those of jsTree when they are rendered through `renderUI`. As exemplified below, a `shinyWidgets::radioGroupButtons`...

Again using changed.jstree event instead of `select_node.jstree` and `deselect_node.jstree` to fix https://github.com/stla/jsTreeR/issues/34 The fix for https://github.com/stla/jsTreeR/issues/16 is not affected

I was trying to implement a button to select / deselect all nodes. However, it seems [this change](https://www.jstree.com/api/#/?f=select_all([supress_event])) is not reflected in the shiny input: ![screen](https://github.com/user-attachments/assets/7b5633dc-078e-43a5-a1ca-071465268130) Example: ``` library(jsTreeR) library(shiny)...

Hello, I might be asking an ignorant question, but I am not extremely familiar with jsTrees. I am trying to generate a different tree everytime a folder is selected within...