CLIENT GUI Framework
[vnfsdk/refrepo.git] / portal-common / src / main / webapp / common / thirdparty / zTree / api / en / setting.data.simpleData.enable.html
1 <div class="apiDetail">\r
2 <div>\r
3         <h2><span>Boolean</span><span class="path">setting.data.simpleData.</span>enable</h2>\r
4         <h3>Overview<span class="h3_info">[ depends on <span class="highlight_green">jquery.ztree.core</span> js ]</span></h3>\r
5         <div class="desc">\r
6                 <p></p>\r
7                 <div class="longdesc">\r
8                         <p>Set zTree's node to accept the simple data format, when zTree is initialized or when ajax get / or when use <span class="highlight_red">addNodes</span> method.</p>\r
9                         <p>Don't have to generate the complex nested data.</p>\r
10                         <p>Default: false</p>\r
11                 </div>\r
12         </div>\r
13         <h3>Boolean Format</h3>\r
14         <div class="desc">\r
15         <p> true means: zTree's node accept the simple data format.</p>\r
16         <p> false means: zTree's node only accept the nested data format.</p>\r
17         <p class="highlight_red">If set it is true, you must set the other attributes in 'setting.data.simpleData'. (e.g., idKey, pIdKey, rootPId)  And let the data satisfy the parent-child relationship.</p>\r
18         </div>\r
19         <h3>Examples of setting</h3>\r
20         <h4>1. use the simple data format</h4>\r
21         <pre xmlns=""><code>var setting = {\r
22         data: {\r
23                 simpleData: {\r
24                         enable: true,\r
25                         idKey: "id",\r
26                         pIdKey: "pId",\r
27                         rootPId: 0,\r
28                 }\r
29         }\r
30 };\r
31 var treeNodes = [\r
32     {"id":1, "pId":0, "name":"test1"},\r
33     {"id":11, "pId":1, "name":"test11"},\r
34     {"id":12, "pId":1, "name":"test12"},\r
35     {"id":111, "pId":11, "name":"test111"}\r
36 ];\r
37 ......</code></pre>\r
38 </div>\r
39 </div>