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.selectNode.html | 34 ---------------------- 1 file changed, 34 deletions(-) delete mode 100644 common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.selectNode.html (limited to 'common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.selectNode.html') diff --git a/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.selectNode.html b/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.selectNode.html deleted file mode 100644 index 237f199..0000000 --- a/common/src/main/webapp/thirdparty/zTree/api/en/zTreeObj.selectNode.html +++ /dev/null @@ -1,34 +0,0 @@ -
-
-

Function(treeNode, addFlag)zTreeObj.selectNode

-

Overview[ depends on jquery.ztree.core js ]

-
-

-
-

Select a node

-

zTree v3.x supports select multiple nodes.

-

Please use zTree object to executing the method.

-
-
-

Function Parameter Descriptions

-
-

treeNodeJSON

-

JSON data object of the node which will be selected.

-

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

-

addFlagBoolean

-

addFlag = true means: append to select node, don't affect the previously selected node, can select multiple nodes.

-

addFlag = false means: select single node, prior the selected node is deselected.

-

If setting.view.selectedMulti = false, this para, this parameter is not valid, always select single node

-

Return none

-

no return value

-
-

Exampleso of function

-

1. Select single node which be first selected.

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