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

Function(event, treeId, treeNode)setting.callback.onCheck

-

Overview[ depends on jquery.ztree.excheck js ]

-
-

-
-

Used to capture the check or uncheck event when check or uncheck the checkbox and radio.

-

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

-

Default: null

-
-
-

Function Parameter Descriptions

-
-

eventjs event Object

-

event Object

-

treeIdString

-

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

-

treeNodeJSON

-

JSON data object of the node which is checked or unchecked

-
-

Examples of setting & function

-

1. When check or uncheck the checkbox and radio, alert info about 'tId' and 'name' and 'checked'.

-
function zTreeOnCheck(event, treeId, treeNode) {
-    alert(treeNode.tId + ", " + treeNode.name + "," + treeNode.checked);
-};
-var setting = {
-	callback: {
-		onCheck: zTreeOnCheck
-	}
-};
-......
-
-
\ No newline at end of file -- cgit 1.2.3-korg