Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / jqTree / _entries / 61_updatenode.md
diff --git a/ecomp-portal-FE/client/bower_components/jqTree/_entries/61_updatenode.md b/ecomp-portal-FE/client/bower_components/jqTree/_entries/61_updatenode.md
new file mode 100644 (file)
index 0000000..49005ed
--- /dev/null
@@ -0,0 +1,50 @@
+---
+title: updateNode
+name: functions-updatenode
+---
+
+**function updateNode(node, name);**
+
+**function updateNode(node, data);**
+
+Update the title of a node. You can also update the data.
+
+Update the name:
+
+{% highlight js %}
+var node = $tree.tree('getNodeById', 123);
+
+$tree.tree('updateNode', node, 'new name');
+{% endhighlight %}
+
+Update the data (including the name)
+
+{% highlight js %}
+var node = $tree.tree('getNodeById', 123);
+
+$tree.tree(
+    'updateNode',
+    node,
+    {
+        name: 'new name',
+        id: 1,
+        other_property: 'abc'
+    }
+);
+{% endhighlight %}
+
+It is also possible to update the children. Note that this removes the existing children:
+
+{% highlight js %}
+$tree.tree(
+    'updateNode',
+    node,
+    {
+        name: 'new name',
+        id: 1,
+        children: [
+            { name: 'child1', id: 2 }
+        ]
+    }
+);
+{% endhighlight %}