I have set theme as
"themes": {
"theme": "proton"
},
My js tree Image with leaf node sign as (+) which is non expandable.see highlighted
It would be beneficial for anyone else who wants to change the triangles in the new theme from jsTree 3.0 back to the plus/minus sign from the previous version for any reason.
Here's how I do it:
Add a status: "closed"
to your nodes.
E.g. {"id":5,"title":"node", status: "closed" }
To inform jstree that the nodes are leaf nodes, for version 1.0 the state
should be set to "leaf"
and for 3.0 the children
property should be set to false
.