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

Function(treeId, treeNode)setting.callback.beforeCheck

-

Overview[ depends on jquery.ztree.excheck js ]

-
-

-
-

Used to capture the event before check or uncheck node, zTree based on return value to determine whether to change check state.

-

Default: null

-
-
-

Function Parameter Descriptions

-
-

treeIdString

-

zTree unique identifier: treeId, easy for users to control.

-

treeNodeJSON

-

JSON data object of the node which is checked or unchecked

-

Return Boolean

-

return true or false

-

If return false, zTree will not change check state, and will not trigger the 'onCheck' callback.

-
-

Examples of setting & function

-

1. disable to change check state of all nodes, and keep the check state initialization

-
function zTreeBeforeCheck(treeId, treeNode) {
-    return false;
-};
-var setting = {
-	callback: {
-		beforeCheck: zTreeBeforeCheck
-	}
-};
-......
-
-
\ No newline at end of file -- cgit 1.2.3-korg