135 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			135 lines
		
	
	
		
			5.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <HTML>
 | |
| <HEAD>
 | |
|     <TITLE> ZTREE DEMO - Simple Data</TITLE>
 | |
|     <meta http-equiv="content-type" content="text/html; charset=UTF-8">
 | |
| <!-- Include font-awesome here, CDN is ok, or locally installed by bower to your project -->
 | |
|     <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css">
 | |
|     
 | |
|     <link rel="stylesheet" href="../../../css/demo.css" type="text/css">
 | |
|     <link rel="stylesheet" href="../../../css/awesomeStyle/awesome.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: {
 | |
|                 addHoverDom: addHoverDom,
 | |
|                 removeHoverDom: removeHoverDom,
 | |
|                 selectedMulti: false
 | |
|             },
 | |
|             check: {
 | |
|                 enable: true
 | |
|                 ,chkStyle: 'radio'
 | |
|                 ,radioType: "level"
 | |
|             },
 | |
|             data: {
 | |
|                 simpleData: {
 | |
|                     enable: true
 | |
|                 }
 | |
|             },
 | |
|             edit: {
 | |
|                 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:" sNode 111"},
 | |
|             { id:112, pId:11, name:"sNode 112"},
 | |
|             { id:113, pId:11, name:"sNode 113"},
 | |
|             { id:114, pId:11, name:"sNode 114"},
 | |
|             { id:12, pId:1, name:"pNode 12"},
 | |
|             { id:121, pId:12, name:"sNode 121"},
 | |
|             { id:122, pId:12, name:"sNode 122"},
 | |
|             { id:123, pId:12, name:"sNode 123"},
 | |
|             { id:124, pId:12, name:"sNode 124"},
 | |
|             { id:13, pId:1, name:"pNode 13", isParent:true},
 | |
|             { id:2, pId:0, name:"pNode 2"},
 | |
|             { id:21, pId:2, name:"pNode 21", open:true},
 | |
|             { id:211, pId:21, name:"sNode 211"},
 | |
|             { id:212, pId:21, name:"sNode 212"},
 | |
|             { id:213, pId:21, name:"sNode 213"},
 | |
|             { id:214, pId:21, name:"sNode 214"},
 | |
|             { id:22, pId:2, name:"pNode 22"},
 | |
|             { id:221, pId:22, name:"sNode 221"},
 | |
|             { id:222, pId:22, name:"sNode 222"},
 | |
|             { id:223, pId:22, name:"sNode 223"},
 | |
|             { id:224, pId:22, name:"sNode 224"},
 | |
|             { id:23, pId:2, name:"pNode 23"},
 | |
|             { id:231, pId:23, name:"sNode 231"},
 | |
|             { id:232, pId:23, name:"sNode 232"},
 | |
|             { id:233, pId:23, name:"sNode 233"},
 | |
|             { id:234, pId:23, name:"sNode 234"},
 | |
|             { id:3, pId:0, name:"pNode 3", isParent:true}
 | |
|         ];
 | |
| 		function setCheck() {
 | |
| 			setting.check.chkStyle = $("#r1").attr("checked")? "checkbox":"radio";
 | |
|                         setting.check.enable = (!$("#disablechk").attr("checked"));
 | |
| 			$.fn.zTree.init($("#treeDemo"), setting, zNodes);
 | |
| 		}
 | |
|         $(document).ready(function(){
 | |
|             $.fn.zTree.init($("#treeDemo"), setting, zNodes);
 | |
| 			setCheck();			
 | |
| 			$("#r1").bind("change", setCheck);
 | |
| 			$("#r2").bind("change", setCheck);
 | |
| 			$("#disablechk").bind("change", setCheck);
 | |
|         });
 | |
| 
 | |
|         var newCount = 1;
 | |
|         function addHoverDom(treeId, treeNode) {
 | |
|             var sObj = $("#" + treeNode.tId + "_span");
 | |
|             if (treeNode.editNameFlag || $("#addBtn_"+treeNode.tId).length>0) return;
 | |
|             var addStr = "<span class='button add' id='addBtn_" + treeNode.tId
 | |
|                 + "' title='add node' onfocus='this.blur();'></span>";
 | |
|             sObj.after(addStr);
 | |
|             var btn = $("#addBtn_"+treeNode.tId);
 | |
|             if (btn) btn.bind("click", function(){
 | |
|                 var zTree = $.fn.zTree.getZTreeObj("treeDemo");
 | |
|                 zTree.addNodes(treeNode, {id:(100 + newCount), pId:treeNode.id, name:"new node" + (newCount++)});
 | |
|                 return false;
 | |
|             });
 | |
|         };
 | |
|         function removeHoverDom(treeId, treeNode) {
 | |
|             $("#addBtn_"+treeNode.tId).unbind().remove();
 | |
|         };
 | |
|         //-->
 | |
|     </SCRIPT>
 | |
| </HEAD>
 | |
| 
 | |
| <BODY>
 | |
| <h1>Awesome Style</h1>
 | |
| <h6>[ File Path: super/awesome.html ]</h6>
 | |
| <div class="content_wrap">
 | |
|     <div class="bg left">
 | |
|         <ul id="treeDemo" class="ztree"></ul>
 | |
|     </div>
 | |
|     <div class="right">
 | |
|         <ul class="info">
 | |
|             <li class="title"><h2>1, Explanation of fontawesome Style</h2>
 | |
|                 <ul class="list">
 | |
|                     <li>You need to include the fontawesome stylesheet in your page (http://maxcdn.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.min.css)</li>
 | |
|                     <li> <i class="fa fa-car"></i> <= This should show a car icon (if fontawesome is loaded properly)</li>
 | |
|                     <li class="highlight_red">Include the css stylesheet: 'css/awesomeStyle'</li>
 | |
|                     <li>Thanks to mikkelking for this Demo. For reference only.</li>
 | |
|                     
 | |
|                     <li><p>Mode: <br/>
 | |
|                             <label ><input type="radio" id="r1" class="radio first" name="r" value="checkbox" checked />
 | |
|                                 Checkbox</label>
 | |
|                             <label><input type="radio" id="r2" class="radio" name="r" value="radio" /> Radio</label>
 | |
|                             <label><input type="checkbox" id="disablechk" > Disable</label>
 | |
|                                 <br/>
 | |
|     				</li>
 | |
| 				</ul>
 | |
| 
 | |
|                 </ul>
 | |
|             </li>
 | |
|         </ul>
 | |
|     </div>
 | |
| </div>
 | |
|  
 | |
| </BODY>
 | |
| </HTML> | 
