码迷,mamicode.com
首页 > 其他好文 > 详细

easyUI tree点击文字展开节点

时间:2014-11-03 19:30:32      阅读:168      评论:0      收藏:0      [点我收藏+]

标签:easyui

easyUI默认展开树的时候,点击节点前边的黑色小三角 ,这样操作存在不人性化的地方,在实际使用中由于老旧电脑的存在和大龄使用者的眼花经常点不准;因此要实现点击节点名称展开的方式,其实就是在展开事件上加一个展开该节点的方法。

在onSelect事件中添加

$(this).tree(‘expand‘,node.target);

当选中该节点的时候,展开该节点下的节点,该方法只会展开下一级节点,并不会展开子节点下的节点。

如果要展开所有节点:

$(this).tree(‘expandAll‘,node.target);

	$(document).ready(function(){
		$('#dept').layout();
		$('#deptTree').tree({
			checkbox:false,
			url:'loadDeptJson.action?node=-1',
			onBeforeExpand:function(node,param){
				$('#deptTree').tree('options').url="loadDeptJson.action?node="+node.id;
			},
			onSelect:function(node){
				$('#deptContent').load("viewDepartment.action?department.id="+node.id);
				$(this).tree('expand',node.target);
			},
		});
	});

给onclick绑定多个事件,如果部门有人,则在grid中显示人员,如果有子部门则展示下级部门
解决方案:
$("#dept_tree").tree({  				       
	 url:"servlet/SearchServlet?dispatch=2&unit_id=" + unit_id+"&id=0",  //此处的url是加载树
	 onBeforeExpand:function(node,param){  						    
		$("#dept_tree").tree("options").url="servlet/SearchServlet?dispatch=2&unit_id=" + unit_id+"&id="+node.id;  
	},  
	onSelect:function(node){  		
	       $(this).tree("expand",node.target);  //展开点击的文本的子节点
	},  
 });  	
onClick:function(node){
	//alert("id"+node.id+"部门id是:" + node.attributes.department_id+"--单位--"+node.attributes.unit_id);	
	var url22 = "servlet/SearchServlet?dispatch=22&unit_id=" + node.attributes.unit_id;			
	$.getJSON(url22,{department_id:node.attributes.department_id},function(data){				
	  if(data.length == 0){
		var url = "servlet/SearchServlet?dispatch=3&department_id="+node.attributes.department_id;
		$("#person_grid").datagrid({url:url,toolbar:results_grid_default_toolbar,columns:results_grid_default_columns})	
	    }
	});			 
},



easyUI tree点击文字展开节点

标签:easyui

原文地址:http://blog.csdn.net/estelle_belle/article/details/40743593

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!