From 6f01a8756fe38c0d6565c369005142adda4b9b57 Mon Sep 17 00:00:00 2001 From: “shentao” Date: Thu, 26 Jan 2017 16:19:00 +0800 Subject: rebuild GUI structure(only changed modules' name) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Issue-id : CLIENT-14 Change-Id: Ie4fa30f1a51393576fbdc68e12d810565cbf06eb Signed-off-by: “shentao” --- .../zTree/api/en/zTreeObj.checkNode.html | 44 ---------------------- 1 file changed, 44 deletions(-) delete mode 100644 openo-portal/portal-common/src/main/webapp/common/thirdparty/zTree/api/en/zTreeObj.checkNode.html (limited to 'openo-portal/portal-common/src/main/webapp/common/thirdparty/zTree/api/en/zTreeObj.checkNode.html') diff --git a/openo-portal/portal-common/src/main/webapp/common/thirdparty/zTree/api/en/zTreeObj.checkNode.html b/openo-portal/portal-common/src/main/webapp/common/thirdparty/zTree/api/en/zTreeObj.checkNode.html deleted file mode 100644 index 948982c7..00000000 --- a/openo-portal/portal-common/src/main/webapp/common/thirdparty/zTree/api/en/zTreeObj.checkNode.html +++ /dev/null @@ -1,44 +0,0 @@ -
-
-

Function(treeNode, checked, checkTypeFlag, callbackFlag)zTreeObj.checkNode

-

Overview[ depends on jquery.ztree.excheck js ]

-
-

-
-

Check or unCheck a single node. It is valid when [setting.check.enable = true]

-

Use checkNode() method of zTree v3.x can trigger 'beforeCheck' or 'onCheck' callback function. for reduce redundant code.

-

Please use zTree object to executing the method.

-
-
-

Function Parameter Descriptions

-
-

treeNodeJSON

-

JSON data object of the node which need to be checked or unchecked.

-

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

-

checkedBoolean

-

checked = true means: check node.

-

checked = false means: uncheck node.

-

If this parameter is omitted, then toggle check or uncheck depend this node's expanded state.

-

Don't affect the node which 'nochecked' attribute is true.

-

checkTypeFlagBoolean

-

checkTypeFlag = true means: According to 'setting.check.chkboxType' attribute automatically check or uncheck the parent and child nodes.

-

checkTypeFlag = false means: only check or uncheck this node, don't affect its parent and child nodes.

-

When checkTypeFlag = false and treeNode.checked = checked, will not trigger callback function.

-

Don't affect the parent and child nodes which 'nochecked' attribute is true.

-

callbackFlagBoolean

-

callbackFlag = true means: call this method, will trigger 'beforeCheck' & 'onCheck' callback.

-

callbackFlag = false means: call this method, will not trigger callback.

-

If this parameter is omitted, it is same as 'callbackFlag = false'

-

Return none

-

no return value

-
-

Examples of function

-

1. check the selected nodes

-
var treeObj = $.fn.zTree.getZTreeObj("tree");
-var nodes = treeObj.getSelectedNodes();
-for (var i=0, l=nodes.length; i < l; i++) {
-	treeObj.checkNode(nodes[i], true, true);
-}
-
-
-
\ No newline at end of file -- cgit 1.2.3-korg