Sha256: a53afdb09833fabef98961c03f489b54f7228eecd94b092c6389d477f287dce3

Contents?: true

Size: 895 Bytes

Versions: 7

Compression:

Stored size: 895 Bytes

Contents

---
title: Javascript tree with drag and drop
layout: page
js: examples/drag_and_drop.js
css: example.css
---

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

<h1>Example 3 - Drag and drop</h1>

<div id="tree1" data-url="/example_data/"></div>

<p>
   Let's add drag-and-drop support by setting the option <strong>dragAndDrop</strong> to true.
   You can now drag tree nodes to another position.
</p>

<p>
    Other options:
</p>

<ul>
    <li>The option <strong>autoOpen</strong> is set to 0 to open the first level of nodes.</li>
</ul>

<h3>html</h3>

{% highlight html %}
<div id="tree1" data-url="/example_data/"></div>
{% endhighlight %}

<h3>javascript</h3>

{% highlight js %}
var $tree = $('#tree1');
$tree.tree({
  dragAndDrop: true,
  autoOpen: 0
});
{% endhighlight %}

Version data entries

7 entries across 7 versions & 1 rubygems

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