Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _examples / 08_multiple_select.html
diff --git a/ecomp-portal-FE/client/bower_components/jqTree/_examples/08_multiple_select.html b/ecomp-portal-FE/client/bower_components/jqTree/_examples/08_multiple_select.html
new file mode 100644 (file)
index 0000000..5331acf
--- /dev/null
@@ -0,0 +1,72 @@
+---
+title: Javascript tree with multiple select
+layout: page
+js: examples/multiple_select.js
+css: example.css
+---
+
+<p id="nav">
+    <a href="../07_autoscroll/">&laquo; Example 7</a>
+    <a href="../09_custom_html/" class="next">Example 9 &raquo;</a>    
+</p>
+
+<h1>Example 8 - multiple select</h1>
+
+
+<p>
+    This example implements multiple select using the following functions and events:
+</p>
+<ul>
+    <li>
+        <strong>addToSelection</strong>: add node to selections
+    </li>
+    <li>
+        <strong>isNodeSelected</strong>: is this node selected?
+    </li>
+    <li>
+        <strong>removeFromSelection</strong>: unselect this node
+    </li>
+    <li>
+        <strong>tree.click event</strong>: this event is fired when a user clicks on a node
+    </li>
+</ul>
+
+<div id="tree1"></div>
+
+<h3>html</h3>
+
+{% highlight html %}
+<div id="tree1" data-url="/nodes/"></div>
+{% endhighlight %}
+
+<h3>javascript</h3>
+
+{% highlight js %}
+$(function() {
+    var $tree = $('#tree1');
+    $tree.tree({
+        data: ExampleData.example_data,
+        autoOpen: true
+    });
+    $tree.bind(
+        'tree.click',
+        function(e) {
+            // Disable single selection
+            e.preventDefault();
+
+            var selected_node = e.node;
+
+            if (selected_node.id == undefined) {
+                console.log('The multiple selection functions require that nodes have an id');
+            }
+
+            if ($tree.tree('isNodeSelected', selected_node)) {
+                $tree.tree('removeFromSelection', selected_node);
+            }
+            else {
+                $tree.tree('addToSelection', selected_node);
+            }
+        }
+    );
+});
+{% endhighlight %}