ipytree icon indicating copy to clipboard operation
ipytree copied to clipboard

A Tree Widget using Jupyter-widgets protocol and jsTree

Results 30 ipytree issues
Sort by recently updated
recently updated
newest added

It is great that the Node widget accepts some HTML strings, which allows one to do simple text formatting (bold, italics, color) to improve readability. For example: However, HTML elements...

I'm trying to use the Tree to represent the tree-like structure of my `CustomClass`. I extended the `Node` class to contain a reference to a `CustomClass` instance. The goal is...

Bumps [loader-utils](https://github.com/webpack/loader-utils) from 1.4.0 to 1.4.2. Release notes Sourced from loader-utils's releases. v1.4.2 1.4.2 (2022-11-11) Bug Fixes ReDoS problem (#226) (17cbf8f) v1.4.1 1.4.1 (2022-11-07) Bug Fixes security problem (#220) (4504e34)...

dependencies

It takes a noticeable period (avg. 3 seconds) to highlight the node to be selected on a relatively big tree, say a thousand leaf nodes with the tree depth of...

bug

Hello, I followed the steps provided for dev installation, bud widget fails in display $ git clone https://github.com/QuantStack/ipytree.git $ cd ipytree $ pip install -e . $ jupyter nbextension install...

I'm trying to run a simple example of `Tree` on JupyterLab. ``` from ipytree import Node, Tree t = Tree() t.add_node(Node("test")) t ``` But all I get is `Error displaying...

Hello, I would like to load child node when the parent node is clicked, because the size of tree is very large. In the code below, I add a new...

When running the example notebook when using vscode ![image](https://user-images.githubusercontent.com/1217560/166069793-c0266929-8876-476f-831f-d73d4c1d19de.png) However, I do actually see the widget rendering at this point (so the above may be a red herring). However, clicking...

How do we get a value whenever we click on the node? In below code: `ImageType=Tree() ImageType.add_node(Node('Landsat',[Node('Collection 1', [Node('Suface Reflectance', [Node('Landsat 8'),Node('Landsat 7')] ), Node('Top Of Atmosphere', [Node('Landsat 8'),Node('Landsat 7')]...

I should have some more time to work on this in a couple weeks (after finals). The key findings are the need to add the `dnd` option to the `plugins`...