From fbbf467696810b7ca2ddac6de0d076af424a2ef0 Mon Sep 17 00:00:00 2001 From: shentao Date: Wed, 19 Apr 2017 18:24:26 +0800 Subject: integrated monitor and performance functions Issue-id: CLIENT-175 Change-Id: I07adc77afd9f62f615790896c9241f8430583398 Signed-off-by: shentao --- .../zTree/api/en/treeNode.iconClose.html | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100755 common/src/main/webapp/thirdparty/zTree/api/en/treeNode.iconClose.html (limited to 'common/src/main/webapp/thirdparty/zTree/api/en/treeNode.iconClose.html') diff --git a/common/src/main/webapp/thirdparty/zTree/api/en/treeNode.iconClose.html b/common/src/main/webapp/thirdparty/zTree/api/en/treeNode.iconClose.html new file mode 100755 index 00000000..2259e8f3 --- /dev/null +++ b/common/src/main/webapp/thirdparty/zTree/api/en/treeNode.iconClose.html @@ -0,0 +1,33 @@ +
+
+

StringtreeNode.iconClose

+

Overview[ depends on jquery.ztree.core js ]

+
+

+
+

URL path of parent node's custom icon when it is collapsed.

+

1. Only parent node support this attribute.

+

2. This attribute must be used simultaneously with 'iconOpen' attribute.

+

3. If you need to use css to set the custom icon, please set the 'treeNode.iconSkin' attribute.

+

Default: undefined

+
+
+

String Format

+
+

Icon image url can be a relative path or absolute path.

+

If use a relative path, please note the relationship between icon image and the page, ensure the correct image path.

+
+

Examples of treeNode

+

1. Set the custom icon

+
var nodes = [
+	//Only show one icon when it is expanded or collapsed.
+	{ name:"Parent Node 1", icon:"/img/parent.gif"},
+
+	//Show two icons when it is expanded or collapsed.
+	{ name:"Parent Node 2", iconOpen:"/img/open.gif", iconClose:"/img/close.gif"},
+
+	//the custom icon for leaf node
+	{ name:"Leaf Node", icon:"/img/leaf.gif"}
+]
+
+
\ No newline at end of file -- cgit