Within my JStree i want the user to only be able to select leafs of the tree. E.g.: Nodes that have no childs. My idea is to bind the select event and manually check whether the selected node has childs and then select/not select the node accordingly.
Is there a simpler way? or is this obvious solution the only one?
You can use
node (leaf) or not. Returning false in ‘before’-Event will reject
selecting the node. See the jsTree groups
In the code.