summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/_entries/23_oncanselectnode.md
blob: 5bf15a252555ca036f8ea783eb68563da802d51f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
---
title: onCanSelectNode
name: options-oncanselectnode
---

You can set a function to override if a node can be selected. The function gets a node as parameter, and must return true or false.

For this to work, the option 'selectable' must be 'true'.

{% highlight js %}
// Example: nodes with children cannot be selected
$('#tree1').tree({
    data: data,
    selectable: true
    onCanSelectNode: function(node) {
        if (node.children.length == 0) {
            // Nodes without children can be selected
            return true;
        }
        else {
            // Nodes with children cannot be selected
            return false;
        }
    }
});
{% endhighlight %}