1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264 |
- /**
- * EasyUI for jQuery 1.6.10
- *
- * Copyright (c) 2009-2018 www.jeasyui.com. All rights reserved.
- *
- * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php
- * To use it on other terms please contact us: info@jeasyui.com
- *
- */
- (function($){
- function _1(_2){
- var _3=$(_2);
- _3.addClass("tree");
- return _3;
- };
- function _4(_5){
- var _6=$.data(_5,"tree").options;
- $(_5).unbind().bind("mouseover",function(e){
- var tt=$(e.target);
- var _7=tt.closest("div.tree-node");
- if(!_7.length){
- return;
- }
- _7.addClass("tree-node-hover");
- if(tt.hasClass("tree-hit")){
- if(tt.hasClass("tree-expanded")){
- tt.addClass("tree-expanded-hover");
- }else{
- tt.addClass("tree-collapsed-hover");
- }
- }
- e.stopPropagation();
- }).bind("mouseout",function(e){
- var tt=$(e.target);
- var _8=tt.closest("div.tree-node");
- if(!_8.length){
- return;
- }
- _8.removeClass("tree-node-hover");
- if(tt.hasClass("tree-hit")){
- if(tt.hasClass("tree-expanded")){
- tt.removeClass("tree-expanded-hover");
- }else{
- tt.removeClass("tree-collapsed-hover");
- }
- }
- e.stopPropagation();
- }).bind("click",function(e){
- var tt=$(e.target);
- var _9=tt.closest("div.tree-node");
- if(!_9.length){
- return;
- }
- if(tt.hasClass("tree-hit")){
- _85(_5,_9[0]);
- return false;
- }else{
- if(tt.hasClass("tree-checkbox")){
- _34(_5,_9[0]);
- return false;
- }else{
- _dc(_5,_9[0]);
- _6.onClick.call(_5,_c(_5,_9[0]));
- }
- }
- e.stopPropagation();
- }).bind("dblclick",function(e){
- var _a=$(e.target).closest("div.tree-node");
- if(!_a.length){
- return;
- }
- _dc(_5,_a[0]);
- _6.onDblClick.call(_5,_c(_5,_a[0]));
- e.stopPropagation();
- }).bind("contextmenu",function(e){
- var _b=$(e.target).closest("div.tree-node");
- if(!_b.length){
- return;
- }
- _6.onContextMenu.call(_5,e,_c(_5,_b[0]));
- e.stopPropagation();
- });
- };
- function _d(_e){
- var _f=$.data(_e,"tree").options;
- _f.dnd=false;
- var _10=$(_e).find("div.tree-node");
- _10.draggable("disable");
- _10.css("cursor","pointer");
- };
- function _11(_12){
- var _13=$.data(_12,"tree");
- var _14=_13.options;
- var _15=_13.tree;
- _13.disabledNodes=[];
- _14.dnd=true;
- _15.find("div.tree-node").draggable({disabled:false,revert:true,cursor:"pointer",proxy:function(_16){
- var p=$("<div class=\"tree-node-proxy\"></div>").appendTo("body");
- p.html("<span class=\"tree-dnd-icon tree-dnd-no\"> </span>"+$(_16).find(".tree-title").html());
- p.hide();
- return p;
- },deltaX:15,deltaY:15,onBeforeDrag:function(e){
- if(_14.onBeforeDrag.call(_12,_c(_12,this))==false){
- return false;
- }
- if($(e.target).hasClass("tree-hit")||$(e.target).hasClass("tree-checkbox")){
- return false;
- }
- if(e.which!=1){
- return false;
- }
- var _17=$(this).find("span.tree-indent");
- if(_17.length){
- e.data.offsetWidth-=_17.length*_17.width();
- }
- },onStartDrag:function(e){
- $(this).next("ul").find("div.tree-node").each(function(){
- $(this).droppable("disable");
- _13.disabledNodes.push(this);
- });
- $(this).draggable("proxy").css({left:-10000,top:-10000});
- _14.onStartDrag.call(_12,_c(_12,this));
- var _18=_c(_12,this);
- if(_18.id==undefined){
- _18.id="easyui_tree_node_id_temp";
- _60(_12,_18);
- }
- _13.draggingNodeId=_18.id;
- },onDrag:function(e){
- var x1=e.pageX,y1=e.pageY,x2=e.data.startX,y2=e.data.startY;
- var d=Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
- if(d>3){
- $(this).draggable("proxy").show();
- }
- this.pageY=e.pageY;
- },onStopDrag:function(){
- for(var i=0;i<_13.disabledNodes.length;i++){
- $(_13.disabledNodes[i]).droppable("enable");
- }
- _13.disabledNodes=[];
- var _19=_d0(_12,_13.draggingNodeId);
- if(_19&&_19.id=="easyui_tree_node_id_temp"){
- _19.id="";
- _60(_12,_19);
- }
- _14.onStopDrag.call(_12,_19);
- }}).droppable({accept:"div.tree-node",onDragEnter:function(e,_1a){
- if(_14.onDragEnter.call(_12,this,_1b(_1a))==false){
- _1c(_1a,false);
- $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
- $(this).droppable("disable");
- _13.disabledNodes.push(this);
- }
- },onDragOver:function(e,_1d){
- if($(this).droppable("options").disabled){
- return;
- }
- var _1e=_1d.pageY;
- var top=$(this).offset().top;
- var _1f=top+$(this).outerHeight();
- _1c(_1d,true);
- $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
- if(_1e>top+(_1f-top)/2){
- if(_1f-_1e<5){
- $(this).addClass("tree-node-bottom");
- }else{
- $(this).addClass("tree-node-append");
- }
- }else{
- if(_1e-top<5){
- $(this).addClass("tree-node-top");
- }else{
- $(this).addClass("tree-node-append");
- }
- }
- if(_14.onDragOver.call(_12,this,_1b(_1d))==false){
- _1c(_1d,false);
- $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
- $(this).droppable("disable");
- _13.disabledNodes.push(this);
- }
- },onDragLeave:function(e,_20){
- _1c(_20,false);
- $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
- _14.onDragLeave.call(_12,this,_1b(_20));
- },onDrop:function(e,_21){
- var _22=this;
- var _23,_24;
- if($(this).hasClass("tree-node-append")){
- _23=_25;
- _24="append";
- }else{
- _23=_26;
- _24=$(this).hasClass("tree-node-top")?"top":"bottom";
- }
- if(_14.onBeforeDrop.call(_12,_22,_1b(_21),_24)==false){
- $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
- return;
- }
- _23(_21,_22,_24);
- $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
- }});
- function _1b(_27,pop){
- return $(_27).closest("ul.tree").tree(pop?"pop":"getData",_27);
- };
- function _1c(_28,_29){
- var _2a=$(_28).draggable("proxy").find("span.tree-dnd-icon");
- _2a.removeClass("tree-dnd-yes tree-dnd-no").addClass(_29?"tree-dnd-yes":"tree-dnd-no");
- };
- function _25(_2b,_2c){
- if(_c(_12,_2c).state=="closed"){
- _79(_12,_2c,function(){
- _2d();
- });
- }else{
- _2d();
- }
- function _2d(){
- var _2e=_1b(_2b,true);
- $(_12).tree("append",{parent:_2c,data:[_2e]});
- _14.onDrop.call(_12,_2c,_2e,"append");
- };
- };
- function _26(_2f,_30,_31){
- var _32={};
- if(_31=="top"){
- _32.before=_30;
- }else{
- _32.after=_30;
- }
- var _33=_1b(_2f,true);
- _32.data=_33;
- $(_12).tree("insert",_32);
- _14.onDrop.call(_12,_30,_33,_31);
- };
- };
- function _34(_35,_36,_37,_38){
- var _39=$.data(_35,"tree");
- var _3a=_39.options;
- if(!_3a.checkbox){
- return;
- }
- var _3b=_c(_35,_36);
- if(!_3b.checkState){
- return;
- }
- var ck=$(_36).find(".tree-checkbox");
- if(_37==undefined){
- if(ck.hasClass("tree-checkbox1")){
- _37=false;
- }else{
- if(ck.hasClass("tree-checkbox0")){
- _37=true;
- }else{
- if(_3b._checked==undefined){
- _3b._checked=$(_36).find(".tree-checkbox").hasClass("tree-checkbox1");
- }
- _37=!_3b._checked;
- }
- }
- }
- _3b._checked=_37;
- if(_37){
- if(ck.hasClass("tree-checkbox1")){
- return;
- }
- }else{
- if(ck.hasClass("tree-checkbox0")){
- return;
- }
- }
- if(!_38){
- if(_3a.onBeforeCheck.call(_35,_3b,_37)==false){
- return;
- }
- }
- if(_3a.cascadeCheck){
- _3c(_35,_3b,_37);
- _3d(_35,_3b);
- }else{
- _3e(_35,_3b,_37?"1":"0");
- }
- if(!_38){
- _3a.onCheck.call(_35,_3b,_37);
- }
- };
- function _3c(_3f,_40,_41){
- var _42=$.data(_3f,"tree").options;
- var _43=_41?1:0;
- _3e(_3f,_40,_43);
- if(_42.deepCheck){
- $.easyui.forEach(_40.children||[],true,function(n){
- _3e(_3f,n,_43);
- });
- }else{
- var _44=[];
- if(_40.children&&_40.children.length){
- _44.push(_40);
- }
- $.easyui.forEach(_40.children||[],true,function(n){
- if(!n.hidden){
- _3e(_3f,n,_43);
- if(n.children&&n.children.length){
- _44.push(n);
- }
- }
- });
- for(var i=_44.length-1;i>=0;i--){
- var _45=_44[i];
- _3e(_3f,_45,_46(_45));
- }
- }
- };
- function _3e(_47,_48,_49){
- var _4a=$.data(_47,"tree").options;
- if(!_48.checkState||_49==undefined){
- return;
- }
- if(_48.hidden&&!_4a.deepCheck){
- return;
- }
- var ck=$("#"+_48.domId).find(".tree-checkbox");
- _48.checkState=["unchecked","checked","indeterminate"][_49];
- _48.checked=(_48.checkState=="checked");
- ck.removeClass("tree-checkbox0 tree-checkbox1 tree-checkbox2");
- ck.addClass("tree-checkbox"+_49);
- };
- function _3d(_4b,_4c){
- var pd=_4d(_4b,$("#"+_4c.domId)[0]);
- if(pd){
- _3e(_4b,pd,_46(pd));
- _3d(_4b,pd);
- }
- };
- function _46(row){
- var c0=0;
- var c1=0;
- var len=0;
- $.easyui.forEach(row.children||[],false,function(r){
- if(r.checkState){
- len++;
- if(r.checkState=="checked"){
- c1++;
- }else{
- if(r.checkState=="unchecked"){
- c0++;
- }
- }
- }
- });
- if(len==0){
- return undefined;
- }
- var _4e=0;
- if(c0==len){
- _4e=0;
- }else{
- if(c1==len){
- _4e=1;
- }else{
- _4e=2;
- }
- }
- return _4e;
- };
- function _4f(_50,_51){
- var _52=$.data(_50,"tree").options;
- if(!_52.checkbox){
- return;
- }
- var _53=$(_51);
- var ck=_53.find(".tree-checkbox");
- var _54=_c(_50,_51);
- if(_52.view.hasCheckbox(_50,_54)){
- if(!ck.length){
- _54.checkState=_54.checkState||"unchecked";
- $("<span class=\"tree-checkbox\"></span>").insertBefore(_53.find(".tree-title"));
- }
- if(_54.checkState=="checked"){
- _34(_50,_51,true,true);
- }else{
- if(_54.checkState=="unchecked"){
- _34(_50,_51,false,true);
- }else{
- var _55=_46(_54);
- if(_55===0){
- _34(_50,_51,false,true);
- }else{
- if(_55===1){
- _34(_50,_51,true,true);
- }
- }
- }
- }
- }else{
- ck.remove();
- _54.checkState=undefined;
- _54.checked=undefined;
- _3d(_50,_54);
- }
- };
- function _56(_57,ul,_58,_59,_5a){
- var _5b=$.data(_57,"tree");
- var _5c=_5b.options;
- var _5d=$(ul).prevAll("div.tree-node:first");
- _58=_5c.loadFilter.call(_57,_58,_5d[0]);
- var _5e=_5f(_57,"domId",_5d.attr("id"));
- if(!_59){
- _5e?_5e.children=_58:_5b.data=_58;
- $(ul).empty();
- }else{
- if(_5e){
- _5e.children?_5e.children=_5e.children.concat(_58):_5e.children=_58;
- }else{
- _5b.data=_5b.data.concat(_58);
- }
- }
- _5c.view.render.call(_5c.view,_57,ul,_58);
- if(_5c.dnd){
- _11(_57);
- }
- if(_5e){
- _60(_57,_5e);
- }
- for(var i=0;i<_5b.tmpIds.length;i++){
- _34(_57,$("#"+_5b.tmpIds[i])[0],true,true);
- }
- _5b.tmpIds=[];
- setTimeout(function(){
- _61(_57,_57);
- },0);
- if(!_5a){
- _5c.onLoadSuccess.call(_57,_5e,_58);
- }
- };
- function _61(_62,ul,_63){
- var _64=$.data(_62,"tree").options;
- if(_64.lines){
- $(_62).addClass("tree-lines");
- }else{
- $(_62).removeClass("tree-lines");
- return;
- }
- if(!_63){
- _63=true;
- $(_62).find("span.tree-indent").removeClass("tree-line tree-join tree-joinbottom");
- $(_62).find("div.tree-node").removeClass("tree-node-last tree-root-first tree-root-one");
- var _65=$(_62).tree("getRoots");
- if(_65.length>1){
- $(_65[0].target).addClass("tree-root-first");
- }else{
- if(_65.length==1){
- $(_65[0].target).addClass("tree-root-one");
- }
- }
- }
- $(ul).children("li").each(function(){
- var _66=$(this).children("div.tree-node");
- var ul=_66.next("ul");
- if(ul.length){
- if($(this).next().length){
- _67(_66);
- }
- _61(_62,ul,_63);
- }else{
- _68(_66);
- }
- });
- var _69=$(ul).children("li:last").children("div.tree-node").addClass("tree-node-last");
- _69.children("span.tree-join").removeClass("tree-join").addClass("tree-joinbottom");
- function _68(_6a,_6b){
- var _6c=_6a.find("span.tree-icon");
- _6c.prev("span.tree-indent").addClass("tree-join");
- };
- function _67(_6d){
- var _6e=_6d.find("span.tree-indent, span.tree-hit").length;
- _6d.next().find("div.tree-node").each(function(){
- $(this).children("span:eq("+(_6e-1)+")").addClass("tree-line");
- });
- };
- };
- function _6f(_70,ul,_71,_72){
- var _73=$.data(_70,"tree").options;
- _71=$.extend({},_73.queryParams,_71||{});
- var _74=null;
- if(_70!=ul){
- var _75=$(ul).prev();
- _74=_c(_70,_75[0]);
- }
- if(_73.onBeforeLoad.call(_70,_74,_71)==false){
- return;
- }
- var _76=$(ul).prev().children("span.tree-folder");
- _76.addClass("tree-loading");
- var _77=_73.loader.call(_70,_71,function(_78){
- _76.removeClass("tree-loading");
- _56(_70,ul,_78);
- if(_72){
- _72();
- }
- },function(){
- _76.removeClass("tree-loading");
- _73.onLoadError.apply(_70,arguments);
- if(_72){
- _72();
- }
- });
- if(_77==false){
- _76.removeClass("tree-loading");
- }
- };
- function _79(_7a,_7b,_7c){
- var _7d=$.data(_7a,"tree").options;
- var hit=$(_7b).children("span.tree-hit");
- if(hit.length==0){
- return;
- }
- if(hit.hasClass("tree-expanded")){
- return;
- }
- var _7e=_c(_7a,_7b);
- if(_7d.onBeforeExpand.call(_7a,_7e)==false){
- return;
- }
- hit.removeClass("tree-collapsed tree-collapsed-hover").addClass("tree-expanded");
- hit.next().addClass("tree-folder-open");
- var ul=$(_7b).next();
- if(ul.length){
- if(_7d.animate){
- ul.slideDown("normal",function(){
- _7e.state="open";
- _7d.onExpand.call(_7a,_7e);
- if(_7c){
- _7c();
- }
- });
- }else{
- ul.css("display","block");
- _7e.state="open";
- _7d.onExpand.call(_7a,_7e);
- if(_7c){
- _7c();
- }
- }
- }else{
- var _7f=$("<ul style=\"display:none\"></ul>").insertAfter(_7b);
- _6f(_7a,_7f[0],{id:_7e.id},function(){
- if(_7f.is(":empty")){
- _7f.remove();
- }
- if(_7d.animate){
- _7f.slideDown("normal",function(){
- _7e.state="open";
- _7d.onExpand.call(_7a,_7e);
- if(_7c){
- _7c();
- }
- });
- }else{
- _7f.css("display","block");
- _7e.state="open";
- _7d.onExpand.call(_7a,_7e);
- if(_7c){
- _7c();
- }
- }
- });
- }
- };
- function _80(_81,_82){
- var _83=$.data(_81,"tree").options;
- var hit=$(_82).children("span.tree-hit");
- if(hit.length==0){
- return;
- }
- if(hit.hasClass("tree-collapsed")){
- return;
- }
- var _84=_c(_81,_82);
- if(_83.onBeforeCollapse.call(_81,_84)==false){
- return;
- }
- hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed");
- hit.next().removeClass("tree-folder-open");
- var ul=$(_82).next();
- if(_83.animate){
- ul.slideUp("normal",function(){
- _84.state="closed";
- _83.onCollapse.call(_81,_84);
- });
- }else{
- ul.css("display","none");
- _84.state="closed";
- _83.onCollapse.call(_81,_84);
- }
- };
- function _85(_86,_87){
- var hit=$(_87).children("span.tree-hit");
- if(hit.length==0){
- return;
- }
- if(hit.hasClass("tree-expanded")){
- _80(_86,_87);
- }else{
- _79(_86,_87);
- }
- };
- function _88(_89,_8a){
- var _8b=_8c(_89,_8a);
- if(_8a){
- _8b.unshift(_c(_89,_8a));
- }
- for(var i=0;i<_8b.length;i++){
- _79(_89,_8b[i].target);
- }
- };
- function _8d(_8e,_8f){
- var _90=[];
- var p=_4d(_8e,_8f);
- while(p){
- _90.unshift(p);
- p=_4d(_8e,p.target);
- }
- for(var i=0;i<_90.length;i++){
- _79(_8e,_90[i].target);
- }
- };
- function _91(_92,_93){
- var c=$(_92).parent();
- while(c[0].tagName!="BODY"&&c.css("overflow-y")!="auto"){
- c=c.parent();
- }
- var n=$(_93);
- var _94=n.offset().top;
- if(c[0].tagName!="BODY"){
- var _95=c.offset().top;
- if(_94<_95){
- c.scrollTop(c.scrollTop()+_94-_95);
- }else{
- if(_94+n.outerHeight()>_95+c.outerHeight()-18){
- c.scrollTop(c.scrollTop()+_94+n.outerHeight()-_95-c.outerHeight()+18);
- }
- }
- }else{
- c.scrollTop(_94);
- }
- };
- function _96(_97,_98){
- var _99=_8c(_97,_98);
- if(_98){
- _99.unshift(_c(_97,_98));
- }
- for(var i=0;i<_99.length;i++){
- _80(_97,_99[i].target);
- }
- };
- function _9a(_9b,_9c){
- var _9d=$(_9c.parent);
- var _9e=_9c.data;
- if(!_9e){
- return;
- }
- _9e=$.isArray(_9e)?_9e:[_9e];
- if(!_9e.length){
- return;
- }
- var ul;
- if(_9d.length==0){
- ul=$(_9b);
- }else{
- if(_9f(_9b,_9d[0])){
- var _a0=_9d.find("span.tree-icon");
- _a0.removeClass("tree-file").addClass("tree-folder tree-folder-open");
- var hit=$("<span class=\"tree-hit tree-expanded\"></span>").insertBefore(_a0);
- if(hit.prev().length){
- hit.prev().remove();
- }
- }
- ul=_9d.next();
- if(!ul.length){
- ul=$("<ul></ul>").insertAfter(_9d);
- }
- }
- _56(_9b,ul[0],_9e,true,true);
- };
- function _a1(_a2,_a3){
- var ref=_a3.before||_a3.after;
- var _a4=_4d(_a2,ref);
- var _a5=_a3.data;
- if(!_a5){
- return;
- }
- _a5=$.isArray(_a5)?_a5:[_a5];
- if(!_a5.length){
- return;
- }
- _9a(_a2,{parent:(_a4?_a4.target:null),data:_a5});
- var _a6=_a4?_a4.children:$(_a2).tree("getRoots");
- for(var i=0;i<_a6.length;i++){
- if(_a6[i].domId==$(ref).attr("id")){
- for(var j=_a5.length-1;j>=0;j--){
- _a6.splice((_a3.before?i:(i+1)),0,_a5[j]);
- }
- _a6.splice(_a6.length-_a5.length,_a5.length);
- break;
- }
- }
- var li=$();
- for(var i=0;i<_a5.length;i++){
- li=li.add($("#"+_a5[i].domId).parent());
- }
- if(_a3.before){
- li.insertBefore($(ref).parent());
- }else{
- li.insertAfter($(ref).parent());
- }
- };
- function _a7(_a8,_a9){
- var _aa=del(_a9);
- $(_a9).parent().remove();
- if(_aa){
- if(!_aa.children||!_aa.children.length){
- var _ab=$(_aa.target);
- _ab.find(".tree-icon").removeClass("tree-folder").addClass("tree-file");
- _ab.find(".tree-hit").remove();
- $("<span class=\"tree-indent\"></span>").prependTo(_ab);
- _ab.next().remove();
- }
- _60(_a8,_aa);
- }
- _61(_a8,_a8);
- function del(_ac){
- var id=$(_ac).attr("id");
- var _ad=_4d(_a8,_ac);
- var cc=_ad?_ad.children:$.data(_a8,"tree").data;
- for(var i=0;i<cc.length;i++){
- if(cc[i].domId==id){
- cc.splice(i,1);
- break;
- }
- }
- return _ad;
- };
- };
- function _60(_ae,_af){
- var _b0=$.data(_ae,"tree").options;
- var _b1=$(_af.target);
- var _b2=_c(_ae,_af.target);
- if(_b2.iconCls){
- _b1.find(".tree-icon").removeClass(_b2.iconCls);
- }
- $.extend(_b2,_af);
- _b1.find(".tree-title").html(_b0.formatter.call(_ae,_b2));
- if(_b2.iconCls){
- _b1.find(".tree-icon").addClass(_b2.iconCls);
- }
- _4f(_ae,_af.target);
- };
- function _b3(_b4,_b5){
- if(_b5){
- var p=_4d(_b4,_b5);
- while(p){
- _b5=p.target;
- p=_4d(_b4,_b5);
- }
- return _c(_b4,_b5);
- }else{
- var _b6=_b7(_b4);
- return _b6.length?_b6[0]:null;
- }
- };
- function _b7(_b8){
- var _b9=$.data(_b8,"tree").data;
- for(var i=0;i<_b9.length;i++){
- _ba(_b9[i]);
- }
- return _b9;
- };
- function _8c(_bb,_bc){
- var _bd=[];
- var n=_c(_bb,_bc);
- var _be=n?(n.children||[]):$.data(_bb,"tree").data;
- $.easyui.forEach(_be,true,function(_bf){
- _bd.push(_ba(_bf));
- });
- return _bd;
- };
- function _4d(_c0,_c1){
- var p=$(_c1).closest("ul").prevAll("div.tree-node:first");
- return _c(_c0,p[0]);
- };
- function _c2(_c3,_c4){
- _c4=_c4||"checked";
- if(!$.isArray(_c4)){
- _c4=[_c4];
- }
- var _c5=[];
- $.easyui.forEach($.data(_c3,"tree").data,true,function(n){
- if(n.checkState&&$.easyui.indexOfArray(_c4,n.checkState)!=-1){
- _c5.push(_ba(n));
- }
- });
- return _c5;
- };
- function _c6(_c7){
- var _c8=$(_c7).find("div.tree-node-selected");
- return _c8.length?_c(_c7,_c8[0]):null;
- };
- function _c9(_ca,_cb){
- var _cc=_c(_ca,_cb);
- if(_cc&&_cc.children){
- $.easyui.forEach(_cc.children,true,function(_cd){
- _ba(_cd);
- });
- }
- return _cc;
- };
- function _c(_ce,_cf){
- return _5f(_ce,"domId",$(_cf).attr("id"));
- };
- function _d0(_d1,_d2){
- if($.isFunction(_d2)){
- var fn=_d2;
- }else{
- var _d2=typeof _d2=="object"?_d2:{id:_d2};
- var fn=function(_d3){
- for(var p in _d2){
- if(_d3[p]!=_d2[p]){
- return false;
- }
- }
- return true;
- };
- }
- var _d4=null;
- var _d5=$.data(_d1,"tree").data;
- $.easyui.forEach(_d5,true,function(_d6){
- if(fn.call(_d1,_d6)==true){
- _d4=_ba(_d6);
- return false;
- }
- });
- return _d4;
- };
- function _5f(_d7,_d8,_d9){
- var _da={};
- _da[_d8]=_d9;
- return _d0(_d7,_da);
- };
- function _ba(_db){
- _db.target=$("#"+_db.domId)[0];
- return _db;
- };
- function _dc(_dd,_de){
- var _df=$.data(_dd,"tree").options;
- var _e0=_c(_dd,_de);
- if(_df.onBeforeSelect.call(_dd,_e0)==false){
- return;
- }
- $(_dd).find("div.tree-node-selected").removeClass("tree-node-selected");
- $(_de).addClass("tree-node-selected");
- _df.onSelect.call(_dd,_e0);
- };
- function _9f(_e1,_e2){
- return $(_e2).children("span.tree-hit").length==0;
- };
- function _e3(_e4,_e5){
- var _e6=$.data(_e4,"tree").options;
- var _e7=_c(_e4,_e5);
- if(_e6.onBeforeEdit.call(_e4,_e7)==false){
- return;
- }
- $(_e5).css("position","relative");
- var nt=$(_e5).find(".tree-title");
- var _e8=nt.outerWidth();
- nt.empty();
- var _e9=$("<input class=\"tree-editor\">").appendTo(nt);
- _e9.val(_e7.text).focus();
- _e9.width(_e8+20);
- _e9._outerHeight(_e6.editorHeight);
- _e9.bind("click",function(e){
- return false;
- }).bind("mousedown",function(e){
- e.stopPropagation();
- }).bind("mousemove",function(e){
- e.stopPropagation();
- }).bind("keydown",function(e){
- if(e.keyCode==13){
- _ea(_e4,_e5);
- return false;
- }else{
- if(e.keyCode==27){
- _f0(_e4,_e5);
- return false;
- }
- }
- }).bind("blur",function(e){
- e.stopPropagation();
- _ea(_e4,_e5);
- });
- };
- function _ea(_eb,_ec){
- var _ed=$.data(_eb,"tree").options;
- $(_ec).css("position","");
- var _ee=$(_ec).find("input.tree-editor");
- var val=_ee.val();
- _ee.remove();
- var _ef=_c(_eb,_ec);
- _ef.text=val;
- _60(_eb,_ef);
- _ed.onAfterEdit.call(_eb,_ef);
- };
- function _f0(_f1,_f2){
- var _f3=$.data(_f1,"tree").options;
- $(_f2).css("position","");
- $(_f2).find("input.tree-editor").remove();
- var _f4=_c(_f1,_f2);
- _60(_f1,_f4);
- _f3.onCancelEdit.call(_f1,_f4);
- };
- function _f5(_f6,q){
- var _f7=$.data(_f6,"tree");
- var _f8=_f7.options;
- var ids={};
- $.easyui.forEach(_f7.data,true,function(_f9){
- if(_f8.filter.call(_f6,q,_f9)){
- $("#"+_f9.domId).removeClass("tree-node-hidden");
- ids[_f9.domId]=1;
- _f9.hidden=false;
- }else{
- $("#"+_f9.domId).addClass("tree-node-hidden");
- _f9.hidden=true;
- }
- });
- for(var id in ids){
- _fa(id);
- }
- function _fa(_fb){
- var p=$(_f6).tree("getParent",$("#"+_fb)[0]);
- while(p){
- $(p.target).removeClass("tree-node-hidden");
- p.hidden=false;
- p=$(_f6).tree("getParent",p.target);
- }
- };
- };
- $.fn.tree=function(_fc,_fd){
- if(typeof _fc=="string"){
- return $.fn.tree.methods[_fc](this,_fd);
- }
- var _fc=_fc||{};
- return this.each(function(){
- var _fe=$.data(this,"tree");
- var _ff;
- if(_fe){
- _ff=$.extend(_fe.options,_fc);
- _fe.options=_ff;
- }else{
- _ff=$.extend({},$.fn.tree.defaults,$.fn.tree.parseOptions(this),_fc);
- $.data(this,"tree",{options:_ff,tree:_1(this),data:[],tmpIds:[]});
- var data=$.fn.tree.parseData(this);
- if(data.length){
- _56(this,this,data);
- }
- }
- _4(this);
- if(_ff.data){
- _56(this,this,$.extend(true,[],_ff.data));
- }
- _6f(this,this);
- });
- };
- $.fn.tree.methods={options:function(jq){
- return $.data(jq[0],"tree").options;
- },loadData:function(jq,data){
- return jq.each(function(){
- _56(this,this,data);
- });
- },getNode:function(jq,_100){
- return _c(jq[0],_100);
- },getData:function(jq,_101){
- return _c9(jq[0],_101);
- },reload:function(jq,_102){
- return jq.each(function(){
- if(_102){
- var node=$(_102);
- var hit=node.children("span.tree-hit");
- hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed");
- node.next().remove();
- _79(this,_102);
- }else{
- $(this).empty();
- _6f(this,this);
- }
- });
- },getRoot:function(jq,_103){
- return _b3(jq[0],_103);
- },getRoots:function(jq){
- return _b7(jq[0]);
- },getParent:function(jq,_104){
- return _4d(jq[0],_104);
- },getChildren:function(jq,_105){
- return _8c(jq[0],_105);
- },getChecked:function(jq,_106){
- return _c2(jq[0],_106);
- },getSelected:function(jq){
- return _c6(jq[0]);
- },isLeaf:function(jq,_107){
- return _9f(jq[0],_107);
- },find:function(jq,id){
- return _d0(jq[0],id);
- },findBy:function(jq,_108){
- return _5f(jq[0],_108.field,_108.value);
- },select:function(jq,_109){
- return jq.each(function(){
- _dc(this,_109);
- });
- },check:function(jq,_10a){
- return jq.each(function(){
- _34(this,_10a,true);
- });
- },uncheck:function(jq,_10b){
- return jq.each(function(){
- _34(this,_10b,false);
- });
- },collapse:function(jq,_10c){
- return jq.each(function(){
- _80(this,_10c);
- });
- },expand:function(jq,_10d){
- return jq.each(function(){
- _79(this,_10d);
- });
- },collapseAll:function(jq,_10e){
- return jq.each(function(){
- _96(this,_10e);
- });
- },expandAll:function(jq,_10f){
- return jq.each(function(){
- _88(this,_10f);
- });
- },expandTo:function(jq,_110){
- return jq.each(function(){
- _8d(this,_110);
- });
- },scrollTo:function(jq,_111){
- return jq.each(function(){
- _91(this,_111);
- });
- },toggle:function(jq,_112){
- return jq.each(function(){
- _85(this,_112);
- });
- },append:function(jq,_113){
- return jq.each(function(){
- _9a(this,_113);
- });
- },insert:function(jq,_114){
- return jq.each(function(){
- _a1(this,_114);
- });
- },remove:function(jq,_115){
- return jq.each(function(){
- _a7(this,_115);
- });
- },pop:function(jq,_116){
- var node=jq.tree("getData",_116);
- jq.tree("remove",_116);
- return node;
- },update:function(jq,_117){
- return jq.each(function(){
- _60(this,$.extend({},_117,{checkState:_117.checked?"checked":(_117.checked===false?"unchecked":undefined)}));
- });
- },enableDnd:function(jq){
- return jq.each(function(){
- _11(this);
- });
- },disableDnd:function(jq){
- return jq.each(function(){
- _d(this);
- });
- },beginEdit:function(jq,_118){
- return jq.each(function(){
- _e3(this,_118);
- });
- },endEdit:function(jq,_119){
- return jq.each(function(){
- _ea(this,_119);
- });
- },cancelEdit:function(jq,_11a){
- return jq.each(function(){
- _f0(this,_11a);
- });
- },doFilter:function(jq,q){
- return jq.each(function(){
- _f5(this,q);
- });
- }};
- $.fn.tree.parseOptions=function(_11b){
- var t=$(_11b);
- return $.extend({},$.parser.parseOptions(_11b,["url","method",{checkbox:"boolean",cascadeCheck:"boolean",onlyLeafCheck:"boolean"},{animate:"boolean",lines:"boolean",dnd:"boolean"}]));
- };
- $.fn.tree.parseData=function(_11c){
- var data=[];
- _11d(data,$(_11c));
- return data;
- function _11d(aa,tree){
- tree.children("li").each(function(){
- var node=$(this);
- var item=$.extend({},$.parser.parseOptions(this,["id","iconCls","state"]),{checked:(node.attr("checked")?true:undefined)});
- item.text=node.children("span").html();
- if(!item.text){
- item.text=node.html();
- }
- var _11e=node.children("ul");
- if(_11e.length){
- item.children=[];
- _11d(item.children,_11e);
- }
- aa.push(item);
- });
- };
- };
- var _11f=1;
- var _120={render:function(_121,ul,data){
- var _122=$.data(_121,"tree");
- var opts=_122.options;
- var _123=$(ul).prev(".tree-node");
- var _124=_123.length?$(_121).tree("getNode",_123[0]):null;
- var _125=_123.find("span.tree-indent, span.tree-hit").length;
- var cc=_126.call(this,_125,data);
- $(ul).append(cc.join(""));
- function _126(_127,_128){
- var cc=[];
- for(var i=0;i<_128.length;i++){
- var item=_128[i];
- if(item.state!="open"&&item.state!="closed"){
- item.state="open";
- }
- item.domId="_easyui_tree_"+_11f++;
- cc.push("<li>");
- cc.push("<div id=\""+item.domId+"\" class=\"tree-node"+(item.nodeCls?" "+item.nodeCls:"")+"\">");
- for(var j=0;j<_127;j++){
- cc.push("<span class=\"tree-indent\"></span>");
- }
- if(item.state=="closed"){
- cc.push("<span class=\"tree-hit tree-collapsed\"></span>");
- cc.push("<span class=\"tree-icon tree-folder "+(item.iconCls?item.iconCls:"")+"\"></span>");
- }else{
- if(item.children&&item.children.length){
- cc.push("<span class=\"tree-hit tree-expanded\"></span>");
- cc.push("<span class=\"tree-icon tree-folder tree-folder-open "+(item.iconCls?item.iconCls:"")+"\"></span>");
- }else{
- cc.push("<span class=\"tree-indent\"></span>");
- cc.push("<span class=\"tree-icon tree-file "+(item.iconCls?item.iconCls:"")+"\"></span>");
- }
- }
- if(this.hasCheckbox(_121,item)){
- var flag=0;
- if(_124&&_124.checkState=="checked"&&opts.cascadeCheck){
- flag=1;
- item.checked=true;
- }else{
- if(item.checked){
- $.easyui.addArrayItem(_122.tmpIds,item.domId);
- }
- }
- item.checkState=flag?"checked":"unchecked";
- cc.push("<span class=\"tree-checkbox tree-checkbox"+flag+"\"></span>");
- }else{
- item.checkState=undefined;
- item.checked=undefined;
- }
- cc.push("<span class=\"tree-title\">"+opts.formatter.call(_121,item)+"</span>");
- cc.push("</div>");
- if(item.children&&item.children.length){
- var tmp=_126.call(this,_127+1,item.children);
- cc.push("<ul style=\"display:"+(item.state=="closed"?"none":"block")+"\">");
- cc=cc.concat(tmp);
- cc.push("</ul>");
- }
- cc.push("</li>");
- }
- return cc;
- };
- },hasCheckbox:function(_129,item){
- var _12a=$.data(_129,"tree");
- var opts=_12a.options;
- if(opts.checkbox){
- if($.isFunction(opts.checkbox)){
- if(opts.checkbox.call(_129,item)){
- return true;
- }else{
- return false;
- }
- }else{
- if(opts.onlyLeafCheck){
- if(item.state=="open"&&!(item.children&&item.children.length)){
- return true;
- }
- }else{
- return true;
- }
- }
- }
- return false;
- }};
- $.fn.tree.defaults={url:null,method:"post",animate:false,checkbox:false,cascadeCheck:true,onlyLeafCheck:false,lines:false,dnd:false,editorHeight:26,data:null,queryParams:{},formatter:function(node){
- return node.text;
- },filter:function(q,node){
- var qq=[];
- $.map($.isArray(q)?q:[q],function(q){
- q=$.trim(q);
- if(q){
- qq.push(q);
- }
- });
- for(var i=0;i<qq.length;i++){
- var _12b=node.text.toLowerCase().indexOf(qq[i].toLowerCase());
- if(_12b>=0){
- return true;
- }
- }
- return !qq.length;
- },loader:function(_12c,_12d,_12e){
- var opts=$(this).tree("options");
- if(!opts.url){
- return false;
- }
- $.ajax({type:opts.method,url:opts.url,data:_12c,dataType:"json",success:function(data){
- _12d(data);
- },error:function(){
- _12e.apply(this,arguments);
- }});
- },loadFilter:function(data,_12f){
- return data;
- },view:_120,onBeforeLoad:function(node,_130){
- },onLoadSuccess:function(node,data){
- },onLoadError:function(){
- },onClick:function(node){
- },onDblClick:function(node){
- },onBeforeExpand:function(node){
- },onExpand:function(node){
- },onBeforeCollapse:function(node){
- },onCollapse:function(node){
- },onBeforeCheck:function(node,_131){
- },onCheck:function(node,_132){
- },onBeforeSelect:function(node){
- },onSelect:function(node){
- },onContextMenu:function(e,node){
- },onBeforeDrag:function(node){
- },onStartDrag:function(node){
- },onStopDrag:function(node){
- },onDragEnter:function(_133,_134){
- },onDragOver:function(_135,_136){
- },onDragLeave:function(_137,_138){
- },onBeforeDrop:function(_139,_13a,_13b){
- },onDrop:function(_13c,_13d,_13e){
- },onBeforeEdit:function(node){
- },onAfterEdit:function(node){
- },onCancelEdit:function(node){
- }};
- })(jQuery);
|