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

Function(event, treeId, treeNodes)setting.callback.onDragMove

-

概述[ 依赖 jquery.ztree.exedit 扩展 js ]

-
-

-
-

用于捕获节点被拖拽过程中移动的事件回调函数

-

主要用于捕获 zTree 节点拖拽到的 DOM,从而操作对应的 DOM。

-

默认值:null

-
-
-

Function 参数说明

-
-

eventjs event 对象

-

标准的 js event 对象

-

treeIdString

-

被拖拽的节点 treeNodes 所在 zTree 的 treeId,便于用户操控

-

treeNodesArray(JSON)

-

要被拖拽的节点 JSON 数据集合

-
-

setting & function 举例

-

1. 拖拽节点时,随时输出 当前拖拽到的目标 DOM

-
function zTreeOnDragMove(event, treeId, treeNodes) {
-    console.log(event.target);
-};
-var setting = {
-	callback: {
-		onDragMove: zTreeOnDragMove
-	}
-};
-......
-
-
\ No newline at end of file -- cgit 1.2.3-korg