radio_nocheck.html 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <!DOCTYPE html>
  2. <HTML>
  3. <HEAD>
  4. <TITLE> ZTREE DEMO - no radio</TITLE>
  5. <meta http-equiv="content-type" content="text/html; charset=UTF-8">
  6. <link rel="stylesheet" href="../../../css/demo.css" type="text/css">
  7. <link rel="stylesheet" href="../../../css/zTreeStyle/zTreeStyle.css" type="text/css">
  8. <script type="text/javascript" src="../../../js/jquery-1.4.4.min.js"></script>
  9. <script type="text/javascript" src="../../../js/jquery.ztree.core-3.5.js"></script>
  10. <script type="text/javascript" src="../../../js/jquery.ztree.excheck-3.5.js"></script>
  11. <!--
  12. <script type="text/javascript" src="../../../js/jquery.ztree.exedit-3.5.js"></script>
  13. -->
  14. <SCRIPT type="text/javascript">
  15. <!--
  16. var setting = {
  17. check: {
  18. enable: true,
  19. chkStyle: "radio",
  20. radioType: "level"
  21. },
  22. data: {
  23. simpleData: {
  24. enable: true
  25. }
  26. }
  27. };
  28. var zNodes =[
  29. { id:1, pId:0, name:"随意勾选 1", open:true},
  30. { id:11, pId:1, name:"随意勾选 1-1", open:true},
  31. { id:111, pId:11, name:"无 radio 1-1-1", nocheck:true},
  32. { id:112, pId:11, name:"随意勾选 1-1-2"},
  33. { id:12, pId:1, name:"无 radio 1-2", nocheck:true, open:true},
  34. { id:121, pId:12, name:"无 radio 1-2-1"},
  35. { id:122, pId:12, name:"无 radio 1-2-2"},
  36. { id:2, pId:0, name:"随意勾选 2", checked:true, open:true},
  37. { id:21, pId:2, name:"随意勾选 2-1"},
  38. { id:22, pId:2, name:"随意勾选 2-2", open:true},
  39. { id:221, pId:22, name:"随意勾选 2-2-1", checked:true},
  40. { id:222, pId:22, name:"随意勾选 2-2-2"},
  41. { id:23, pId:2, name:"随意勾选 2-3"}
  42. ];
  43. $(document).ready(function(){
  44. $.fn.zTree.init($("#treeDemo"), setting, zNodes);
  45. });
  46. //-->
  47. </SCRIPT>
  48. </HEAD>
  49. <BODY>
  50. <h1>Radio nocheck 演示</h1>
  51. <h6>[ 文件路径: excheck/radio_nocheck.html ]</h6>
  52. <div class="content_wrap">
  53. <div class="zTreeDemoBackground left">
  54. <ul id="treeDemo" class="ztree"></ul>
  55. </div>
  56. <div class="right">
  57. <ul class="info">
  58. <li class="title"><h2>1、setting 配置信息说明</h2>
  59. <ul class="list">
  60. <li>这个 Demo 只简单演示 nocheck 的使用方法,详细配置信息请参考 ‘Radio 勾选操作’</li>
  61. <li class="highlight_red">setting.check.nocheckInherit 可以设置子节点自动继承父节点的 nocheck 属性,详细请参见 API 文档中的相关内容</li>
  62. </ul>
  63. </li>
  64. <li class="title"><h2>2、treeNode 节点数据说明</h2>
  65. <ul class="list">
  66. <li class="highlight_red">1)、如果某节点不显示 radio,请设置 treeNode.nocheck 属性,详细请参见 API 文档中的相关内容</li>
  67. <li>2)、其他请参考 ‘Radio 勾选操作’</li>
  68. </ul>
  69. </li>
  70. </ul>
  71. </div>
  72. </div>
  73. </BODY>
  74. </HTML>