From fbbf467696810b7ca2ddac6de0d076af424a2ef0 Mon Sep 17 00:00:00 2001 From: shentao Date: Wed, 19 Apr 2017 18:24:26 +0800 Subject: integrated monitor and performance functions Issue-id: CLIENT-175 Change-Id: I07adc77afd9f62f615790896c9241f8430583398 Signed-off-by: shentao --- .../zTree/api/en/zTreeObj.showNodes.html | 29 ++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100755 common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.showNodes.html (limited to 'common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.showNodes.html') diff --git a/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.showNodes.html b/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.showNodes.html new file mode 100755 index 00000000..c0c926c3 --- /dev/null +++ b/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.showNodes.html @@ -0,0 +1,29 @@ +
+
+

Function(treeNodes)zTreeObj.showNodes

+

Overview[ depends on jquery.ztree.exhide js ]

+
+

+
+

To show a group of nodes which be hidden.

+

1. This feature can't support the 'exedit' feature, so please don't use this feature in edit mode.

+

2. If you hide or show the nodes, it will effect the 'isFirstNode' and 'isLastNode' attribute.

+

3. Please use zTree object to executing the method.

+
+
+

Function Parameter Descriptions

+
+

treeNodesArray(JSON)

+

the array of the nodes which will be shown

+

Please ensure that this data object is an internal node data object in zTree.

+

Retrun none

+

no return value

+
+

Examples of function

+

1. show all of the nodes which be hidden.

+
var treeObj = $.fn.zTree.getZTreeObj("tree");
+var nodes = treeObj.getNodesByParam("isHidden", true);
+treeObj.showNodes(nodes);
+
+
+
\ No newline at end of file -- cgit 1.2.3-korg