Sha256: 5dadc20f6d3d2ef1919b2ab8c1f8f5d383c038b91bc095de09ac56007bd91398

Contents?: true

Size: 1.03 KB

Versions: 7

Compression:

Stored size: 1.03 KB

Contents

---
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.html" 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 = [
    {
        label: 'node1', id: 1,
        children: [
            { label: 'child1', id: 2 },
            { label: 'child2', id: 3 }
        ]
    },
    {
        label: 'node2', id: 4,
        children: [
            { label: 'child3', id: 5 }
        ]
    }
];

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

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
iqvoc-4.12.1 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html
iqvoc-4.12.0 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html
iqvoc-4.11.1 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html
iqvoc-4.11.0 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html
iqvoc-4.10.0 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html
iqvoc-4.9.0 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html
iqvoc-4.8.2 vendor/assets/bower_components/jqtree/_examples/01_load_json_data.html