1. 程式人生 > >Easyui 非同步樹直接全部展開

Easyui 非同步樹直接全部展開

初始化非同步樹直接全部展開程式碼:

    $(function(){
	$('#tt').tree({
	    url:'<%=request.getContextPath()%>/treeInit',
	    lines:true,
     	    onLoadSuccess:function(node,data){
	         var t = $(this);
   		 if(data){
		     $(data).each(function(index,d){
			if(this.state == 'closed'){
			    t.tree('expandAll');
			}
		     });
		}
	    }
	});
    });