4
hao
2025-04-16 c5fb1fbcbb2bf4d511773d348f9ef625855c61fc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
<!DOCTYPE html>
<HTML>
<HEAD>
    <TITLE> ZTREE DEMO - noLine </TITLE>
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    <link rel="stylesheet" href="../../../css/demo.css" type="text/css">
    <link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css">
    <script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script>
    <script type="text/javascript" src="../../../js/jquery.ztree.core.js"></script>
    <!--  <script type="text/javascript" src="../../../js/jquery.ztree.excheck.js"></script>
      <script type="text/javascript" src="../../../js/jquery.ztree.exedit.js"></script>-->
    <SCRIPT type="text/javascript">
        <!--
        var setting = {
            view: {
                showLine: false
            },
            data: {
                simpleData: {
                    enable: true
                }
            }
        };
 
        var zNodes =[
            { id:1, pId:0, name:"pNode 1", open:true},
            { id:11, pId:1, name:"pNode 11"},
            { id:111, pId:11, name:"leaf node 111"},
            { id:112, pId:11, name:"leaf node 112"},
            { id:113, pId:11, name:"leaf node 113"},
            { id:114, pId:11, name:"leaf node 114"},
            { id:12, pId:1, name:"pNode 12"},
            { id:121, pId:12, name:"leaf node 121"},
            { id:122, pId:12, name:"leaf node 122"},
            { id:123, pId:12, name:"leaf node 123"},
            { id:124, pId:12, name:"leaf node 124"},
            { id:13, pId:1, name:"pNode 13 - no child", isParent:true},
            { id:2, pId:0, name:"pNode 2"},
            { id:21, pId:2, name:"pNode 21", open:true},
            { id:211, pId:21, name:"leaf node 211"},
            { id:212, pId:21, name:"leaf node 212"},
            { id:213, pId:21, name:"leaf node 213"},
            { id:214, pId:21, name:"leaf node 214"},
            { id:22, pId:2, name:"pNode 22"},
            { id:221, pId:22, name:"leaf node 221"},
            { id:222, pId:22, name:"leaf node 222"},
            { id:223, pId:22, name:"leaf node 223"},
            { id:224, pId:22, name:"leaf node 224"},
            { id:23, pId:2, name:"pNode 23"},
            { id:231, pId:23, name:"leaf node 231"},
            { id:232, pId:23, name:"leaf node 232"},
            { id:233, pId:23, name:"leaf node 233"},
            { id:234, pId:23, name:"leaf node 234"},
            { id:3, pId:0, name:"pNode 3 - no child", isParent:true}
        ];
 
        $(document).ready(function(){
            $.fn.zTree.init($("#treeDemo"), setting, zNodes);
        });
        //-->
    </SCRIPT>
 
</HEAD>
 
<BODY>
<h1>Don't Show Line</h1>
<h6>[ File Path: core/noline.html ]</h6>
<div class="content_wrap">
    <div class="zTreeDemoBackground left">
        <ul id="treeDemo" class="ztree"></ul>
    </div>
    <div class="right">
        <ul class="info">
            <li class="title"><h2>1, Explanation of setting</h2>
                <ul class="list">
                <li class="highlight_red">Whether to display the line, you need to set setting.view.showLine attribute, see the API documentation for more related contents.</li>
                </ul>
            </li>
            <li class="title"><h2>2, Explanation of treeNode</h2>
                <ul class="list">
                <li>TreeNode data does not require special settings</li>
                </ul>
            </li>
        </ul>
    </div>
</div>
</BODY>
</HTML>