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

String / Function(treeId, treeNode)setting.edit.removeTitle

-

Overview[ depends on jquery.ztree.exedit js ]

-
-

-
-

the title of the remove button DOM. It is valid when [setting.edit.enable = true & setting.edit.showRemoveBtn = true]

-

Default: "remove"

-
-
-

String Format

-
-

When the mouse over the remove button, the browser auto pop-up message content.

-
-

Function Parameter Descriptions

-
-

treeIdString

-

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

-

treeNodeJSON

-

JSON data object of the node which show the remove button

-

Return String

-

Return value is same as 'String Format'

-
-

Examples of setting & function

-

1. Set title is 'remove the node' about all the remove button

-
var setting = {
-	edit: {
-		enable: true,
-		showRemoveBtn: true,
-		removeTitle: "remove the node"
-	}
-};
-......
-

2. Set title is 'remove the parent node' about the parent node, and is 'remove the leaf node' about the leaf node

-
function setRemoveTitle(treeId, treeNode) {
-	return treeNode.isParent ? "remove the parent node":"remove the leaf node";
-}
-var setting = {
-	edit: {
-		enable: true,
-		showRemoveBtn: true,
-		removeTitle: setRemoveTitle
-	}
-};
-......
-
-
\ No newline at end of file -- cgit 1.2.3-korg