From e02cfb1940c721efa29d7766763e5d5beaf46189 Mon Sep 17 00:00:00 2001 From: Lizi Date: Thu, 18 Jan 2018 09:24:19 +0000 Subject: Remove the redundancy packages Change-Id: I1c04ad98a1fc0351b69c125c7afc8b6ee8ad64af Issue-ID: AAI-591 Signed-off-by: Lizi --- .../zTree/api/en/zTreeObj.cancelSelectedNode.html | 35 ---------------------- 1 file changed, 35 deletions(-) delete mode 100644 common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.cancelSelectedNode.html (limited to 'common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.cancelSelectedNode.html') diff --git a/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.cancelSelectedNode.html b/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.cancelSelectedNode.html deleted file mode 100644 index 581c2d2..0000000 --- a/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.cancelSelectedNode.html +++ /dev/null @@ -1,35 +0,0 @@ -
-
-

Function(treeNode)zTreeObj.cancelSelectedNode

-

Overview[ depends on jquery.ztree.core js ]

-
-

-
-

To cancel the selected node.

-

zTree v3.x support to select multiple nodes, so you can cancel a single selected node, and you can cancel all of the selected nodes too.

-

Please use zTree object to executing the method.

-
-
-

Function Parameter Descriptions

-
-

treeNodeJSON

-

JSON data object of the node which need to cancel selected.

-

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

-

If you omit this parameter, zTree will cancel all of the selected nodes.

-

Return none

-

no return value

-
-

Examples of function

-

1. Cancel all of the selected nodes

-
var treeObj = $.fn.zTree.getZTreeObj("tree");
-treeObj.cancelSelectedNode();
-
-

2. Cancel the first node of the selected nodes

-
var treeObj = $.fn.zTree.getZTreeObj("tree");
-var nodes = treeObj.getSelectedNode();
-if (nodes.length>0) { 
-	treeObj.cancelSelectedNode(nodes[0]);
-}
-
-
-
\ No newline at end of file -- cgit 1.2.3-korg