Leaf's with no children do not display checkboxes or group icons. #2669
Unanswered
ApiumJacob
asked this question in
Q&A
Replies: 3 comments
-
Same thing happens if I define my tree in HTML: <div id="jstree_div">
<ul>
<li>Hello
<ul>
<li>Hello</li>
<li>World</li>
</ul>
</li>
<li>World</li>
</ul>
</div> Javascritpt: $('#jstree_div').jstree(); |
Beta Was this translation helpful? Give feedback.
0 replies
-
Beta Was this translation helpful? Give feedback.
0 replies
-
Interestingly if I change the theme to default-dark then everything breaks: <link rel=stylesheet type=text/css href="{{ url_for('static', filename='jstree/themes/default-dark/style.min.css')|autoversion }}"> Both style.min.css and style.css produce this output: <link rel=stylesheet type=text/css href="{{ url_for('static', filename='jstree/themes/default/style.min.css')|autoversion }}"> <link rel=stylesheet type=text/css href="{{ url_for('static', filename='jstree/themes/default/style.css')|autoversion }}"> |
Beta Was this translation helpful? Give feedback.
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.
Uh oh!
There was an error while loading. Please reload this page.
-
/*! jsTree - v3.3.12 - 2021-09-03 - (MIT) */
On the front page of jtree.com there is an example with checkboxes and groupt icons:

However, when I make my tree the leaf don't show the group icons nor checkboxes:

Anyone have a hint on what's going on here?
Beta Was this translation helpful? Give feedback.
All reactions