Replies: 1 comment
|
For what it's worth, both |
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Hi,
When creating a tree , you're getting a Tree object , the root. When adding a node , you 're getting a TreeNode object
I created a recursive function to display the content of a tree , but it's not possible directly from the root (due to the root is Tree and all other are TreeNode).
But when you're rendering a Tree , you have
Tree
---- TreeNode 1
---- TreeNode 2
---- TreeNode 3
Could it be possible to choose the tree level start for rendering ? Or at least be able to hide the first level (Tree object) and rendering only the nodes ?
All reactions