summaryrefslogtreecommitdiffstats
path: root/ecomp-portal-FE/client/bower_components/jqTree/_examples/01_load_json_data.html
blob: c68461c74a51db1ecd36e3be639cf53325b5c0c1 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
---
title: Load json data in javascript tree
layout: page
js: examples/load_json_data.js
css: example.css
---

<p id="nav">
    <a href="../../index.html">&laquo; Documentation</a>
    <a href="../02_load_json_data_from_server/" class="next">Example 2 &raquo;</a>
</p>

<h1>Example 1 - load json data</h1>

<div id="tree1"></div>

<p>
    In this example we load the data using the <strong>data</strong> option.
    As you can see, the data is an array of objects.
</p>
<ul>
    <li>The <strong>label</strong> property defines the label of the node.</li>
    <li>The <strong>id</strong> is the unique id of the node.</li>
    <li>The <strong>children</strong> property is an array of nodes.</li>
</ul>

{% highlight js %}
var data = [
    {
        name: 'node1', id: 1,
        children: [
            { name: 'child1', id: 2 },
            { name: 'child2', id: 3 }
        ]
    },
    {
        name: 'node2', id: 4,
        children: [
            { name: 'child3', id: 5 }
        ]
    }
];

$('#tree1').tree({
    data: data
});
{% endhighlight %}