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/cn/zTreeObj.updateNode.html | 37 ---------------------- 1 file changed, 37 deletions(-) delete mode 100644 common/src/main/webapp/thirdparty/zTree/api/cn/zTreeObj.updateNode.html (limited to 'common/src/main/webapp/thirdparty/zTree/api/cn/zTreeObj.updateNode.html') diff --git a/common/src/main/webapp/thirdparty/zTree/api/cn/zTreeObj.updateNode.html b/common/src/main/webapp/thirdparty/zTree/api/cn/zTreeObj.updateNode.html deleted file mode 100644 index 847fa6e..0000000 --- a/common/src/main/webapp/thirdparty/zTree/api/cn/zTreeObj.updateNode.html +++ /dev/null @@ -1,37 +0,0 @@ -
-
-

Function(treeNode, checkTypeFlag)zTreeObj.updateNode

-

概述[ 依赖 jquery.ztree.core 核心 js ]

-
-

-
-

更新某节点数据,主要用于该节点显示属性的更新。

-

1、可针对 name、target、 url、icon、 iconSkin、checked、nocheck 等这几个用于显示效果的参数进行更新,其他用于 zTreeNodes 的参数请不要随意更新,对于展开节点,还请调用 expandNode方法,因此请勿随意修改 open 属性。

-

2、用此方法修改 checked 勾选状态不会触发 beforeCheck / onCheck 事件回调函数。

-

请通过 zTree 对象执行此方法。

-
-
-

Function 参数说明

-
-

treeNodeJSON

-

指定需要更新的节点 JSON 数据

-

请务必保证此节点数据对象 是 zTree 内部的数据对象

-

checkTypeFlagBoolean

-

checkTypeFlag = true 表示按照 setting.check.chkboxType 属性进行父子节点的勾选联动操作

-

checkTypeFlag = false 表示只修改此节点勾选状态,无任何勾选联动操作

-

当 setting.check.enable = true 且 setting.check.chkStyle = "checkbox" 时才有效

-

不影响父子节点中 treeNode.nochecked = true 的节点。

-

返回值

-

目前无任何返回值

-
-

function 举例

-

1. 更新根节点中第一个节点的名称

-
var treeObj = $.fn.zTree.getZTreeObj("tree");
-var nodes = treeObj.getNodes();
-if (nodes.length>0) {
-	nodes[0].name = "test";
-	treeObj.updateNode(nodes[0]);
-}
-
-
-
\ No newline at end of file -- cgit 1.2.3-korg