jquery.tree.js 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264
  1. /**
  2. * EasyUI for jQuery 1.6.10
  3. *
  4. * Copyright (c) 2009-2018 www.jeasyui.com. All rights reserved.
  5. *
  6. * Licensed under the freeware license: http://www.jeasyui.com/license_freeware.php
  7. * To use it on other terms please contact us: info@jeasyui.com
  8. *
  9. */
  10. (function($){
  11. function _1(_2){
  12. var _3=$(_2);
  13. _3.addClass("tree");
  14. return _3;
  15. };
  16. function _4(_5){
  17. var _6=$.data(_5,"tree").options;
  18. $(_5).unbind().bind("mouseover",function(e){
  19. var tt=$(e.target);
  20. var _7=tt.closest("div.tree-node");
  21. if(!_7.length){
  22. return;
  23. }
  24. _7.addClass("tree-node-hover");
  25. if(tt.hasClass("tree-hit")){
  26. if(tt.hasClass("tree-expanded")){
  27. tt.addClass("tree-expanded-hover");
  28. }else{
  29. tt.addClass("tree-collapsed-hover");
  30. }
  31. }
  32. e.stopPropagation();
  33. }).bind("mouseout",function(e){
  34. var tt=$(e.target);
  35. var _8=tt.closest("div.tree-node");
  36. if(!_8.length){
  37. return;
  38. }
  39. _8.removeClass("tree-node-hover");
  40. if(tt.hasClass("tree-hit")){
  41. if(tt.hasClass("tree-expanded")){
  42. tt.removeClass("tree-expanded-hover");
  43. }else{
  44. tt.removeClass("tree-collapsed-hover");
  45. }
  46. }
  47. e.stopPropagation();
  48. }).bind("click",function(e){
  49. var tt=$(e.target);
  50. var _9=tt.closest("div.tree-node");
  51. if(!_9.length){
  52. return;
  53. }
  54. if(tt.hasClass("tree-hit")){
  55. _85(_5,_9[0]);
  56. return false;
  57. }else{
  58. if(tt.hasClass("tree-checkbox")){
  59. _34(_5,_9[0]);
  60. return false;
  61. }else{
  62. _dc(_5,_9[0]);
  63. _6.onClick.call(_5,_c(_5,_9[0]));
  64. }
  65. }
  66. e.stopPropagation();
  67. }).bind("dblclick",function(e){
  68. var _a=$(e.target).closest("div.tree-node");
  69. if(!_a.length){
  70. return;
  71. }
  72. _dc(_5,_a[0]);
  73. _6.onDblClick.call(_5,_c(_5,_a[0]));
  74. e.stopPropagation();
  75. }).bind("contextmenu",function(e){
  76. var _b=$(e.target).closest("div.tree-node");
  77. if(!_b.length){
  78. return;
  79. }
  80. _6.onContextMenu.call(_5,e,_c(_5,_b[0]));
  81. e.stopPropagation();
  82. });
  83. };
  84. function _d(_e){
  85. var _f=$.data(_e,"tree").options;
  86. _f.dnd=false;
  87. var _10=$(_e).find("div.tree-node");
  88. _10.draggable("disable");
  89. _10.css("cursor","pointer");
  90. };
  91. function _11(_12){
  92. var _13=$.data(_12,"tree");
  93. var _14=_13.options;
  94. var _15=_13.tree;
  95. _13.disabledNodes=[];
  96. _14.dnd=true;
  97. _15.find("div.tree-node").draggable({disabled:false,revert:true,cursor:"pointer",proxy:function(_16){
  98. var p=$("<div class=\"tree-node-proxy\"></div>").appendTo("body");
  99. p.html("<span class=\"tree-dnd-icon tree-dnd-no\">&nbsp;</span>"+$(_16).find(".tree-title").html());
  100. p.hide();
  101. return p;
  102. },deltaX:15,deltaY:15,onBeforeDrag:function(e){
  103. if(_14.onBeforeDrag.call(_12,_c(_12,this))==false){
  104. return false;
  105. }
  106. if($(e.target).hasClass("tree-hit")||$(e.target).hasClass("tree-checkbox")){
  107. return false;
  108. }
  109. if(e.which!=1){
  110. return false;
  111. }
  112. var _17=$(this).find("span.tree-indent");
  113. if(_17.length){
  114. e.data.offsetWidth-=_17.length*_17.width();
  115. }
  116. },onStartDrag:function(e){
  117. $(this).next("ul").find("div.tree-node").each(function(){
  118. $(this).droppable("disable");
  119. _13.disabledNodes.push(this);
  120. });
  121. $(this).draggable("proxy").css({left:-10000,top:-10000});
  122. _14.onStartDrag.call(_12,_c(_12,this));
  123. var _18=_c(_12,this);
  124. if(_18.id==undefined){
  125. _18.id="easyui_tree_node_id_temp";
  126. _60(_12,_18);
  127. }
  128. _13.draggingNodeId=_18.id;
  129. },onDrag:function(e){
  130. var x1=e.pageX,y1=e.pageY,x2=e.data.startX,y2=e.data.startY;
  131. var d=Math.sqrt((x1-x2)*(x1-x2)+(y1-y2)*(y1-y2));
  132. if(d>3){
  133. $(this).draggable("proxy").show();
  134. }
  135. this.pageY=e.pageY;
  136. },onStopDrag:function(){
  137. for(var i=0;i<_13.disabledNodes.length;i++){
  138. $(_13.disabledNodes[i]).droppable("enable");
  139. }
  140. _13.disabledNodes=[];
  141. var _19=_d0(_12,_13.draggingNodeId);
  142. if(_19&&_19.id=="easyui_tree_node_id_temp"){
  143. _19.id="";
  144. _60(_12,_19);
  145. }
  146. _14.onStopDrag.call(_12,_19);
  147. }}).droppable({accept:"div.tree-node",onDragEnter:function(e,_1a){
  148. if(_14.onDragEnter.call(_12,this,_1b(_1a))==false){
  149. _1c(_1a,false);
  150. $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
  151. $(this).droppable("disable");
  152. _13.disabledNodes.push(this);
  153. }
  154. },onDragOver:function(e,_1d){
  155. if($(this).droppable("options").disabled){
  156. return;
  157. }
  158. var _1e=_1d.pageY;
  159. var top=$(this).offset().top;
  160. var _1f=top+$(this).outerHeight();
  161. _1c(_1d,true);
  162. $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
  163. if(_1e>top+(_1f-top)/2){
  164. if(_1f-_1e<5){
  165. $(this).addClass("tree-node-bottom");
  166. }else{
  167. $(this).addClass("tree-node-append");
  168. }
  169. }else{
  170. if(_1e-top<5){
  171. $(this).addClass("tree-node-top");
  172. }else{
  173. $(this).addClass("tree-node-append");
  174. }
  175. }
  176. if(_14.onDragOver.call(_12,this,_1b(_1d))==false){
  177. _1c(_1d,false);
  178. $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
  179. $(this).droppable("disable");
  180. _13.disabledNodes.push(this);
  181. }
  182. },onDragLeave:function(e,_20){
  183. _1c(_20,false);
  184. $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
  185. _14.onDragLeave.call(_12,this,_1b(_20));
  186. },onDrop:function(e,_21){
  187. var _22=this;
  188. var _23,_24;
  189. if($(this).hasClass("tree-node-append")){
  190. _23=_25;
  191. _24="append";
  192. }else{
  193. _23=_26;
  194. _24=$(this).hasClass("tree-node-top")?"top":"bottom";
  195. }
  196. if(_14.onBeforeDrop.call(_12,_22,_1b(_21),_24)==false){
  197. $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
  198. return;
  199. }
  200. _23(_21,_22,_24);
  201. $(this).removeClass("tree-node-append tree-node-top tree-node-bottom");
  202. }});
  203. function _1b(_27,pop){
  204. return $(_27).closest("ul.tree").tree(pop?"pop":"getData",_27);
  205. };
  206. function _1c(_28,_29){
  207. var _2a=$(_28).draggable("proxy").find("span.tree-dnd-icon");
  208. _2a.removeClass("tree-dnd-yes tree-dnd-no").addClass(_29?"tree-dnd-yes":"tree-dnd-no");
  209. };
  210. function _25(_2b,_2c){
  211. if(_c(_12,_2c).state=="closed"){
  212. _79(_12,_2c,function(){
  213. _2d();
  214. });
  215. }else{
  216. _2d();
  217. }
  218. function _2d(){
  219. var _2e=_1b(_2b,true);
  220. $(_12).tree("append",{parent:_2c,data:[_2e]});
  221. _14.onDrop.call(_12,_2c,_2e,"append");
  222. };
  223. };
  224. function _26(_2f,_30,_31){
  225. var _32={};
  226. if(_31=="top"){
  227. _32.before=_30;
  228. }else{
  229. _32.after=_30;
  230. }
  231. var _33=_1b(_2f,true);
  232. _32.data=_33;
  233. $(_12).tree("insert",_32);
  234. _14.onDrop.call(_12,_30,_33,_31);
  235. };
  236. };
  237. function _34(_35,_36,_37,_38){
  238. var _39=$.data(_35,"tree");
  239. var _3a=_39.options;
  240. if(!_3a.checkbox){
  241. return;
  242. }
  243. var _3b=_c(_35,_36);
  244. if(!_3b.checkState){
  245. return;
  246. }
  247. var ck=$(_36).find(".tree-checkbox");
  248. if(_37==undefined){
  249. if(ck.hasClass("tree-checkbox1")){
  250. _37=false;
  251. }else{
  252. if(ck.hasClass("tree-checkbox0")){
  253. _37=true;
  254. }else{
  255. if(_3b._checked==undefined){
  256. _3b._checked=$(_36).find(".tree-checkbox").hasClass("tree-checkbox1");
  257. }
  258. _37=!_3b._checked;
  259. }
  260. }
  261. }
  262. _3b._checked=_37;
  263. if(_37){
  264. if(ck.hasClass("tree-checkbox1")){
  265. return;
  266. }
  267. }else{
  268. if(ck.hasClass("tree-checkbox0")){
  269. return;
  270. }
  271. }
  272. if(!_38){
  273. if(_3a.onBeforeCheck.call(_35,_3b,_37)==false){
  274. return;
  275. }
  276. }
  277. if(_3a.cascadeCheck){
  278. _3c(_35,_3b,_37);
  279. _3d(_35,_3b);
  280. }else{
  281. _3e(_35,_3b,_37?"1":"0");
  282. }
  283. if(!_38){
  284. _3a.onCheck.call(_35,_3b,_37);
  285. }
  286. };
  287. function _3c(_3f,_40,_41){
  288. var _42=$.data(_3f,"tree").options;
  289. var _43=_41?1:0;
  290. _3e(_3f,_40,_43);
  291. if(_42.deepCheck){
  292. $.easyui.forEach(_40.children||[],true,function(n){
  293. _3e(_3f,n,_43);
  294. });
  295. }else{
  296. var _44=[];
  297. if(_40.children&&_40.children.length){
  298. _44.push(_40);
  299. }
  300. $.easyui.forEach(_40.children||[],true,function(n){
  301. if(!n.hidden){
  302. _3e(_3f,n,_43);
  303. if(n.children&&n.children.length){
  304. _44.push(n);
  305. }
  306. }
  307. });
  308. for(var i=_44.length-1;i>=0;i--){
  309. var _45=_44[i];
  310. _3e(_3f,_45,_46(_45));
  311. }
  312. }
  313. };
  314. function _3e(_47,_48,_49){
  315. var _4a=$.data(_47,"tree").options;
  316. if(!_48.checkState||_49==undefined){
  317. return;
  318. }
  319. if(_48.hidden&&!_4a.deepCheck){
  320. return;
  321. }
  322. var ck=$("#"+_48.domId).find(".tree-checkbox");
  323. _48.checkState=["unchecked","checked","indeterminate"][_49];
  324. _48.checked=(_48.checkState=="checked");
  325. ck.removeClass("tree-checkbox0 tree-checkbox1 tree-checkbox2");
  326. ck.addClass("tree-checkbox"+_49);
  327. };
  328. function _3d(_4b,_4c){
  329. var pd=_4d(_4b,$("#"+_4c.domId)[0]);
  330. if(pd){
  331. _3e(_4b,pd,_46(pd));
  332. _3d(_4b,pd);
  333. }
  334. };
  335. function _46(row){
  336. var c0=0;
  337. var c1=0;
  338. var len=0;
  339. $.easyui.forEach(row.children||[],false,function(r){
  340. if(r.checkState){
  341. len++;
  342. if(r.checkState=="checked"){
  343. c1++;
  344. }else{
  345. if(r.checkState=="unchecked"){
  346. c0++;
  347. }
  348. }
  349. }
  350. });
  351. if(len==0){
  352. return undefined;
  353. }
  354. var _4e=0;
  355. if(c0==len){
  356. _4e=0;
  357. }else{
  358. if(c1==len){
  359. _4e=1;
  360. }else{
  361. _4e=2;
  362. }
  363. }
  364. return _4e;
  365. };
  366. function _4f(_50,_51){
  367. var _52=$.data(_50,"tree").options;
  368. if(!_52.checkbox){
  369. return;
  370. }
  371. var _53=$(_51);
  372. var ck=_53.find(".tree-checkbox");
  373. var _54=_c(_50,_51);
  374. if(_52.view.hasCheckbox(_50,_54)){
  375. if(!ck.length){
  376. _54.checkState=_54.checkState||"unchecked";
  377. $("<span class=\"tree-checkbox\"></span>").insertBefore(_53.find(".tree-title"));
  378. }
  379. if(_54.checkState=="checked"){
  380. _34(_50,_51,true,true);
  381. }else{
  382. if(_54.checkState=="unchecked"){
  383. _34(_50,_51,false,true);
  384. }else{
  385. var _55=_46(_54);
  386. if(_55===0){
  387. _34(_50,_51,false,true);
  388. }else{
  389. if(_55===1){
  390. _34(_50,_51,true,true);
  391. }
  392. }
  393. }
  394. }
  395. }else{
  396. ck.remove();
  397. _54.checkState=undefined;
  398. _54.checked=undefined;
  399. _3d(_50,_54);
  400. }
  401. };
  402. function _56(_57,ul,_58,_59,_5a){
  403. var _5b=$.data(_57,"tree");
  404. var _5c=_5b.options;
  405. var _5d=$(ul).prevAll("div.tree-node:first");
  406. _58=_5c.loadFilter.call(_57,_58,_5d[0]);
  407. var _5e=_5f(_57,"domId",_5d.attr("id"));
  408. if(!_59){
  409. _5e?_5e.children=_58:_5b.data=_58;
  410. $(ul).empty();
  411. }else{
  412. if(_5e){
  413. _5e.children?_5e.children=_5e.children.concat(_58):_5e.children=_58;
  414. }else{
  415. _5b.data=_5b.data.concat(_58);
  416. }
  417. }
  418. _5c.view.render.call(_5c.view,_57,ul,_58);
  419. if(_5c.dnd){
  420. _11(_57);
  421. }
  422. if(_5e){
  423. _60(_57,_5e);
  424. }
  425. for(var i=0;i<_5b.tmpIds.length;i++){
  426. _34(_57,$("#"+_5b.tmpIds[i])[0],true,true);
  427. }
  428. _5b.tmpIds=[];
  429. setTimeout(function(){
  430. _61(_57,_57);
  431. },0);
  432. if(!_5a){
  433. _5c.onLoadSuccess.call(_57,_5e,_58);
  434. }
  435. };
  436. function _61(_62,ul,_63){
  437. var _64=$.data(_62,"tree").options;
  438. if(_64.lines){
  439. $(_62).addClass("tree-lines");
  440. }else{
  441. $(_62).removeClass("tree-lines");
  442. return;
  443. }
  444. if(!_63){
  445. _63=true;
  446. $(_62).find("span.tree-indent").removeClass("tree-line tree-join tree-joinbottom");
  447. $(_62).find("div.tree-node").removeClass("tree-node-last tree-root-first tree-root-one");
  448. var _65=$(_62).tree("getRoots");
  449. if(_65.length>1){
  450. $(_65[0].target).addClass("tree-root-first");
  451. }else{
  452. if(_65.length==1){
  453. $(_65[0].target).addClass("tree-root-one");
  454. }
  455. }
  456. }
  457. $(ul).children("li").each(function(){
  458. var _66=$(this).children("div.tree-node");
  459. var ul=_66.next("ul");
  460. if(ul.length){
  461. if($(this).next().length){
  462. _67(_66);
  463. }
  464. _61(_62,ul,_63);
  465. }else{
  466. _68(_66);
  467. }
  468. });
  469. var _69=$(ul).children("li:last").children("div.tree-node").addClass("tree-node-last");
  470. _69.children("span.tree-join").removeClass("tree-join").addClass("tree-joinbottom");
  471. function _68(_6a,_6b){
  472. var _6c=_6a.find("span.tree-icon");
  473. _6c.prev("span.tree-indent").addClass("tree-join");
  474. };
  475. function _67(_6d){
  476. var _6e=_6d.find("span.tree-indent, span.tree-hit").length;
  477. _6d.next().find("div.tree-node").each(function(){
  478. $(this).children("span:eq("+(_6e-1)+")").addClass("tree-line");
  479. });
  480. };
  481. };
  482. function _6f(_70,ul,_71,_72){
  483. var _73=$.data(_70,"tree").options;
  484. _71=$.extend({},_73.queryParams,_71||{});
  485. var _74=null;
  486. if(_70!=ul){
  487. var _75=$(ul).prev();
  488. _74=_c(_70,_75[0]);
  489. }
  490. if(_73.onBeforeLoad.call(_70,_74,_71)==false){
  491. return;
  492. }
  493. var _76=$(ul).prev().children("span.tree-folder");
  494. _76.addClass("tree-loading");
  495. var _77=_73.loader.call(_70,_71,function(_78){
  496. _76.removeClass("tree-loading");
  497. _56(_70,ul,_78);
  498. if(_72){
  499. _72();
  500. }
  501. },function(){
  502. _76.removeClass("tree-loading");
  503. _73.onLoadError.apply(_70,arguments);
  504. if(_72){
  505. _72();
  506. }
  507. });
  508. if(_77==false){
  509. _76.removeClass("tree-loading");
  510. }
  511. };
  512. function _79(_7a,_7b,_7c){
  513. var _7d=$.data(_7a,"tree").options;
  514. var hit=$(_7b).children("span.tree-hit");
  515. if(hit.length==0){
  516. return;
  517. }
  518. if(hit.hasClass("tree-expanded")){
  519. return;
  520. }
  521. var _7e=_c(_7a,_7b);
  522. if(_7d.onBeforeExpand.call(_7a,_7e)==false){
  523. return;
  524. }
  525. hit.removeClass("tree-collapsed tree-collapsed-hover").addClass("tree-expanded");
  526. hit.next().addClass("tree-folder-open");
  527. var ul=$(_7b).next();
  528. if(ul.length){
  529. if(_7d.animate){
  530. ul.slideDown("normal",function(){
  531. _7e.state="open";
  532. _7d.onExpand.call(_7a,_7e);
  533. if(_7c){
  534. _7c();
  535. }
  536. });
  537. }else{
  538. ul.css("display","block");
  539. _7e.state="open";
  540. _7d.onExpand.call(_7a,_7e);
  541. if(_7c){
  542. _7c();
  543. }
  544. }
  545. }else{
  546. var _7f=$("<ul style=\"display:none\"></ul>").insertAfter(_7b);
  547. _6f(_7a,_7f[0],{id:_7e.id},function(){
  548. if(_7f.is(":empty")){
  549. _7f.remove();
  550. }
  551. if(_7d.animate){
  552. _7f.slideDown("normal",function(){
  553. _7e.state="open";
  554. _7d.onExpand.call(_7a,_7e);
  555. if(_7c){
  556. _7c();
  557. }
  558. });
  559. }else{
  560. _7f.css("display","block");
  561. _7e.state="open";
  562. _7d.onExpand.call(_7a,_7e);
  563. if(_7c){
  564. _7c();
  565. }
  566. }
  567. });
  568. }
  569. };
  570. function _80(_81,_82){
  571. var _83=$.data(_81,"tree").options;
  572. var hit=$(_82).children("span.tree-hit");
  573. if(hit.length==0){
  574. return;
  575. }
  576. if(hit.hasClass("tree-collapsed")){
  577. return;
  578. }
  579. var _84=_c(_81,_82);
  580. if(_83.onBeforeCollapse.call(_81,_84)==false){
  581. return;
  582. }
  583. hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed");
  584. hit.next().removeClass("tree-folder-open");
  585. var ul=$(_82).next();
  586. if(_83.animate){
  587. ul.slideUp("normal",function(){
  588. _84.state="closed";
  589. _83.onCollapse.call(_81,_84);
  590. });
  591. }else{
  592. ul.css("display","none");
  593. _84.state="closed";
  594. _83.onCollapse.call(_81,_84);
  595. }
  596. };
  597. function _85(_86,_87){
  598. var hit=$(_87).children("span.tree-hit");
  599. if(hit.length==0){
  600. return;
  601. }
  602. if(hit.hasClass("tree-expanded")){
  603. _80(_86,_87);
  604. }else{
  605. _79(_86,_87);
  606. }
  607. };
  608. function _88(_89,_8a){
  609. var _8b=_8c(_89,_8a);
  610. if(_8a){
  611. _8b.unshift(_c(_89,_8a));
  612. }
  613. for(var i=0;i<_8b.length;i++){
  614. _79(_89,_8b[i].target);
  615. }
  616. };
  617. function _8d(_8e,_8f){
  618. var _90=[];
  619. var p=_4d(_8e,_8f);
  620. while(p){
  621. _90.unshift(p);
  622. p=_4d(_8e,p.target);
  623. }
  624. for(var i=0;i<_90.length;i++){
  625. _79(_8e,_90[i].target);
  626. }
  627. };
  628. function _91(_92,_93){
  629. var c=$(_92).parent();
  630. while(c[0].tagName!="BODY"&&c.css("overflow-y")!="auto"){
  631. c=c.parent();
  632. }
  633. var n=$(_93);
  634. var _94=n.offset().top;
  635. if(c[0].tagName!="BODY"){
  636. var _95=c.offset().top;
  637. if(_94<_95){
  638. c.scrollTop(c.scrollTop()+_94-_95);
  639. }else{
  640. if(_94+n.outerHeight()>_95+c.outerHeight()-18){
  641. c.scrollTop(c.scrollTop()+_94+n.outerHeight()-_95-c.outerHeight()+18);
  642. }
  643. }
  644. }else{
  645. c.scrollTop(_94);
  646. }
  647. };
  648. function _96(_97,_98){
  649. var _99=_8c(_97,_98);
  650. if(_98){
  651. _99.unshift(_c(_97,_98));
  652. }
  653. for(var i=0;i<_99.length;i++){
  654. _80(_97,_99[i].target);
  655. }
  656. };
  657. function _9a(_9b,_9c){
  658. var _9d=$(_9c.parent);
  659. var _9e=_9c.data;
  660. if(!_9e){
  661. return;
  662. }
  663. _9e=$.isArray(_9e)?_9e:[_9e];
  664. if(!_9e.length){
  665. return;
  666. }
  667. var ul;
  668. if(_9d.length==0){
  669. ul=$(_9b);
  670. }else{
  671. if(_9f(_9b,_9d[0])){
  672. var _a0=_9d.find("span.tree-icon");
  673. _a0.removeClass("tree-file").addClass("tree-folder tree-folder-open");
  674. var hit=$("<span class=\"tree-hit tree-expanded\"></span>").insertBefore(_a0);
  675. if(hit.prev().length){
  676. hit.prev().remove();
  677. }
  678. }
  679. ul=_9d.next();
  680. if(!ul.length){
  681. ul=$("<ul></ul>").insertAfter(_9d);
  682. }
  683. }
  684. _56(_9b,ul[0],_9e,true,true);
  685. };
  686. function _a1(_a2,_a3){
  687. var ref=_a3.before||_a3.after;
  688. var _a4=_4d(_a2,ref);
  689. var _a5=_a3.data;
  690. if(!_a5){
  691. return;
  692. }
  693. _a5=$.isArray(_a5)?_a5:[_a5];
  694. if(!_a5.length){
  695. return;
  696. }
  697. _9a(_a2,{parent:(_a4?_a4.target:null),data:_a5});
  698. var _a6=_a4?_a4.children:$(_a2).tree("getRoots");
  699. for(var i=0;i<_a6.length;i++){
  700. if(_a6[i].domId==$(ref).attr("id")){
  701. for(var j=_a5.length-1;j>=0;j--){
  702. _a6.splice((_a3.before?i:(i+1)),0,_a5[j]);
  703. }
  704. _a6.splice(_a6.length-_a5.length,_a5.length);
  705. break;
  706. }
  707. }
  708. var li=$();
  709. for(var i=0;i<_a5.length;i++){
  710. li=li.add($("#"+_a5[i].domId).parent());
  711. }
  712. if(_a3.before){
  713. li.insertBefore($(ref).parent());
  714. }else{
  715. li.insertAfter($(ref).parent());
  716. }
  717. };
  718. function _a7(_a8,_a9){
  719. var _aa=del(_a9);
  720. $(_a9).parent().remove();
  721. if(_aa){
  722. if(!_aa.children||!_aa.children.length){
  723. var _ab=$(_aa.target);
  724. _ab.find(".tree-icon").removeClass("tree-folder").addClass("tree-file");
  725. _ab.find(".tree-hit").remove();
  726. $("<span class=\"tree-indent\"></span>").prependTo(_ab);
  727. _ab.next().remove();
  728. }
  729. _60(_a8,_aa);
  730. }
  731. _61(_a8,_a8);
  732. function del(_ac){
  733. var id=$(_ac).attr("id");
  734. var _ad=_4d(_a8,_ac);
  735. var cc=_ad?_ad.children:$.data(_a8,"tree").data;
  736. for(var i=0;i<cc.length;i++){
  737. if(cc[i].domId==id){
  738. cc.splice(i,1);
  739. break;
  740. }
  741. }
  742. return _ad;
  743. };
  744. };
  745. function _60(_ae,_af){
  746. var _b0=$.data(_ae,"tree").options;
  747. var _b1=$(_af.target);
  748. var _b2=_c(_ae,_af.target);
  749. if(_b2.iconCls){
  750. _b1.find(".tree-icon").removeClass(_b2.iconCls);
  751. }
  752. $.extend(_b2,_af);
  753. _b1.find(".tree-title").html(_b0.formatter.call(_ae,_b2));
  754. if(_b2.iconCls){
  755. _b1.find(".tree-icon").addClass(_b2.iconCls);
  756. }
  757. _4f(_ae,_af.target);
  758. };
  759. function _b3(_b4,_b5){
  760. if(_b5){
  761. var p=_4d(_b4,_b5);
  762. while(p){
  763. _b5=p.target;
  764. p=_4d(_b4,_b5);
  765. }
  766. return _c(_b4,_b5);
  767. }else{
  768. var _b6=_b7(_b4);
  769. return _b6.length?_b6[0]:null;
  770. }
  771. };
  772. function _b7(_b8){
  773. var _b9=$.data(_b8,"tree").data;
  774. for(var i=0;i<_b9.length;i++){
  775. _ba(_b9[i]);
  776. }
  777. return _b9;
  778. };
  779. function _8c(_bb,_bc){
  780. var _bd=[];
  781. var n=_c(_bb,_bc);
  782. var _be=n?(n.children||[]):$.data(_bb,"tree").data;
  783. $.easyui.forEach(_be,true,function(_bf){
  784. _bd.push(_ba(_bf));
  785. });
  786. return _bd;
  787. };
  788. function _4d(_c0,_c1){
  789. var p=$(_c1).closest("ul").prevAll("div.tree-node:first");
  790. return _c(_c0,p[0]);
  791. };
  792. function _c2(_c3,_c4){
  793. _c4=_c4||"checked";
  794. if(!$.isArray(_c4)){
  795. _c4=[_c4];
  796. }
  797. var _c5=[];
  798. $.easyui.forEach($.data(_c3,"tree").data,true,function(n){
  799. if(n.checkState&&$.easyui.indexOfArray(_c4,n.checkState)!=-1){
  800. _c5.push(_ba(n));
  801. }
  802. });
  803. return _c5;
  804. };
  805. function _c6(_c7){
  806. var _c8=$(_c7).find("div.tree-node-selected");
  807. return _c8.length?_c(_c7,_c8[0]):null;
  808. };
  809. function _c9(_ca,_cb){
  810. var _cc=_c(_ca,_cb);
  811. if(_cc&&_cc.children){
  812. $.easyui.forEach(_cc.children,true,function(_cd){
  813. _ba(_cd);
  814. });
  815. }
  816. return _cc;
  817. };
  818. function _c(_ce,_cf){
  819. return _5f(_ce,"domId",$(_cf).attr("id"));
  820. };
  821. function _d0(_d1,_d2){
  822. if($.isFunction(_d2)){
  823. var fn=_d2;
  824. }else{
  825. var _d2=typeof _d2=="object"?_d2:{id:_d2};
  826. var fn=function(_d3){
  827. for(var p in _d2){
  828. if(_d3[p]!=_d2[p]){
  829. return false;
  830. }
  831. }
  832. return true;
  833. };
  834. }
  835. var _d4=null;
  836. var _d5=$.data(_d1,"tree").data;
  837. $.easyui.forEach(_d5,true,function(_d6){
  838. if(fn.call(_d1,_d6)==true){
  839. _d4=_ba(_d6);
  840. return false;
  841. }
  842. });
  843. return _d4;
  844. };
  845. function _5f(_d7,_d8,_d9){
  846. var _da={};
  847. _da[_d8]=_d9;
  848. return _d0(_d7,_da);
  849. };
  850. function _ba(_db){
  851. _db.target=$("#"+_db.domId)[0];
  852. return _db;
  853. };
  854. function _dc(_dd,_de){
  855. var _df=$.data(_dd,"tree").options;
  856. var _e0=_c(_dd,_de);
  857. if(_df.onBeforeSelect.call(_dd,_e0)==false){
  858. return;
  859. }
  860. $(_dd).find("div.tree-node-selected").removeClass("tree-node-selected");
  861. $(_de).addClass("tree-node-selected");
  862. _df.onSelect.call(_dd,_e0);
  863. };
  864. function _9f(_e1,_e2){
  865. return $(_e2).children("span.tree-hit").length==0;
  866. };
  867. function _e3(_e4,_e5){
  868. var _e6=$.data(_e4,"tree").options;
  869. var _e7=_c(_e4,_e5);
  870. if(_e6.onBeforeEdit.call(_e4,_e7)==false){
  871. return;
  872. }
  873. $(_e5).css("position","relative");
  874. var nt=$(_e5).find(".tree-title");
  875. var _e8=nt.outerWidth();
  876. nt.empty();
  877. var _e9=$("<input class=\"tree-editor\">").appendTo(nt);
  878. _e9.val(_e7.text).focus();
  879. _e9.width(_e8+20);
  880. _e9._outerHeight(_e6.editorHeight);
  881. _e9.bind("click",function(e){
  882. return false;
  883. }).bind("mousedown",function(e){
  884. e.stopPropagation();
  885. }).bind("mousemove",function(e){
  886. e.stopPropagation();
  887. }).bind("keydown",function(e){
  888. if(e.keyCode==13){
  889. _ea(_e4,_e5);
  890. return false;
  891. }else{
  892. if(e.keyCode==27){
  893. _f0(_e4,_e5);
  894. return false;
  895. }
  896. }
  897. }).bind("blur",function(e){
  898. e.stopPropagation();
  899. _ea(_e4,_e5);
  900. });
  901. };
  902. function _ea(_eb,_ec){
  903. var _ed=$.data(_eb,"tree").options;
  904. $(_ec).css("position","");
  905. var _ee=$(_ec).find("input.tree-editor");
  906. var val=_ee.val();
  907. _ee.remove();
  908. var _ef=_c(_eb,_ec);
  909. _ef.text=val;
  910. _60(_eb,_ef);
  911. _ed.onAfterEdit.call(_eb,_ef);
  912. };
  913. function _f0(_f1,_f2){
  914. var _f3=$.data(_f1,"tree").options;
  915. $(_f2).css("position","");
  916. $(_f2).find("input.tree-editor").remove();
  917. var _f4=_c(_f1,_f2);
  918. _60(_f1,_f4);
  919. _f3.onCancelEdit.call(_f1,_f4);
  920. };
  921. function _f5(_f6,q){
  922. var _f7=$.data(_f6,"tree");
  923. var _f8=_f7.options;
  924. var ids={};
  925. $.easyui.forEach(_f7.data,true,function(_f9){
  926. if(_f8.filter.call(_f6,q,_f9)){
  927. $("#"+_f9.domId).removeClass("tree-node-hidden");
  928. ids[_f9.domId]=1;
  929. _f9.hidden=false;
  930. }else{
  931. $("#"+_f9.domId).addClass("tree-node-hidden");
  932. _f9.hidden=true;
  933. }
  934. });
  935. for(var id in ids){
  936. _fa(id);
  937. }
  938. function _fa(_fb){
  939. var p=$(_f6).tree("getParent",$("#"+_fb)[0]);
  940. while(p){
  941. $(p.target).removeClass("tree-node-hidden");
  942. p.hidden=false;
  943. p=$(_f6).tree("getParent",p.target);
  944. }
  945. };
  946. };
  947. $.fn.tree=function(_fc,_fd){
  948. if(typeof _fc=="string"){
  949. return $.fn.tree.methods[_fc](this,_fd);
  950. }
  951. var _fc=_fc||{};
  952. return this.each(function(){
  953. var _fe=$.data(this,"tree");
  954. var _ff;
  955. if(_fe){
  956. _ff=$.extend(_fe.options,_fc);
  957. _fe.options=_ff;
  958. }else{
  959. _ff=$.extend({},$.fn.tree.defaults,$.fn.tree.parseOptions(this),_fc);
  960. $.data(this,"tree",{options:_ff,tree:_1(this),data:[],tmpIds:[]});
  961. var data=$.fn.tree.parseData(this);
  962. if(data.length){
  963. _56(this,this,data);
  964. }
  965. }
  966. _4(this);
  967. if(_ff.data){
  968. _56(this,this,$.extend(true,[],_ff.data));
  969. }
  970. _6f(this,this);
  971. });
  972. };
  973. $.fn.tree.methods={options:function(jq){
  974. return $.data(jq[0],"tree").options;
  975. },loadData:function(jq,data){
  976. return jq.each(function(){
  977. _56(this,this,data);
  978. });
  979. },getNode:function(jq,_100){
  980. return _c(jq[0],_100);
  981. },getData:function(jq,_101){
  982. return _c9(jq[0],_101);
  983. },reload:function(jq,_102){
  984. return jq.each(function(){
  985. if(_102){
  986. var node=$(_102);
  987. var hit=node.children("span.tree-hit");
  988. hit.removeClass("tree-expanded tree-expanded-hover").addClass("tree-collapsed");
  989. node.next().remove();
  990. _79(this,_102);
  991. }else{
  992. $(this).empty();
  993. _6f(this,this);
  994. }
  995. });
  996. },getRoot:function(jq,_103){
  997. return _b3(jq[0],_103);
  998. },getRoots:function(jq){
  999. return _b7(jq[0]);
  1000. },getParent:function(jq,_104){
  1001. return _4d(jq[0],_104);
  1002. },getChildren:function(jq,_105){
  1003. return _8c(jq[0],_105);
  1004. },getChecked:function(jq,_106){
  1005. return _c2(jq[0],_106);
  1006. },getSelected:function(jq){
  1007. return _c6(jq[0]);
  1008. },isLeaf:function(jq,_107){
  1009. return _9f(jq[0],_107);
  1010. },find:function(jq,id){
  1011. return _d0(jq[0],id);
  1012. },findBy:function(jq,_108){
  1013. return _5f(jq[0],_108.field,_108.value);
  1014. },select:function(jq,_109){
  1015. return jq.each(function(){
  1016. _dc(this,_109);
  1017. });
  1018. },check:function(jq,_10a){
  1019. return jq.each(function(){
  1020. _34(this,_10a,true);
  1021. });
  1022. },uncheck:function(jq,_10b){
  1023. return jq.each(function(){
  1024. _34(this,_10b,false);
  1025. });
  1026. },collapse:function(jq,_10c){
  1027. return jq.each(function(){
  1028. _80(this,_10c);
  1029. });
  1030. },expand:function(jq,_10d){
  1031. return jq.each(function(){
  1032. _79(this,_10d);
  1033. });
  1034. },collapseAll:function(jq,_10e){
  1035. return jq.each(function(){
  1036. _96(this,_10e);
  1037. });
  1038. },expandAll:function(jq,_10f){
  1039. return jq.each(function(){
  1040. _88(this,_10f);
  1041. });
  1042. },expandTo:function(jq,_110){
  1043. return jq.each(function(){
  1044. _8d(this,_110);
  1045. });
  1046. },scrollTo:function(jq,_111){
  1047. return jq.each(function(){
  1048. _91(this,_111);
  1049. });
  1050. },toggle:function(jq,_112){
  1051. return jq.each(function(){
  1052. _85(this,_112);
  1053. });
  1054. },append:function(jq,_113){
  1055. return jq.each(function(){
  1056. _9a(this,_113);
  1057. });
  1058. },insert:function(jq,_114){
  1059. return jq.each(function(){
  1060. _a1(this,_114);
  1061. });
  1062. },remove:function(jq,_115){
  1063. return jq.each(function(){
  1064. _a7(this,_115);
  1065. });
  1066. },pop:function(jq,_116){
  1067. var node=jq.tree("getData",_116);
  1068. jq.tree("remove",_116);
  1069. return node;
  1070. },update:function(jq,_117){
  1071. return jq.each(function(){
  1072. _60(this,$.extend({},_117,{checkState:_117.checked?"checked":(_117.checked===false?"unchecked":undefined)}));
  1073. });
  1074. },enableDnd:function(jq){
  1075. return jq.each(function(){
  1076. _11(this);
  1077. });
  1078. },disableDnd:function(jq){
  1079. return jq.each(function(){
  1080. _d(this);
  1081. });
  1082. },beginEdit:function(jq,_118){
  1083. return jq.each(function(){
  1084. _e3(this,_118);
  1085. });
  1086. },endEdit:function(jq,_119){
  1087. return jq.each(function(){
  1088. _ea(this,_119);
  1089. });
  1090. },cancelEdit:function(jq,_11a){
  1091. return jq.each(function(){
  1092. _f0(this,_11a);
  1093. });
  1094. },doFilter:function(jq,q){
  1095. return jq.each(function(){
  1096. _f5(this,q);
  1097. });
  1098. }};
  1099. $.fn.tree.parseOptions=function(_11b){
  1100. var t=$(_11b);
  1101. return $.extend({},$.parser.parseOptions(_11b,["url","method",{checkbox:"boolean",cascadeCheck:"boolean",onlyLeafCheck:"boolean"},{animate:"boolean",lines:"boolean",dnd:"boolean"}]));
  1102. };
  1103. $.fn.tree.parseData=function(_11c){
  1104. var data=[];
  1105. _11d(data,$(_11c));
  1106. return data;
  1107. function _11d(aa,tree){
  1108. tree.children("li").each(function(){
  1109. var node=$(this);
  1110. var item=$.extend({},$.parser.parseOptions(this,["id","iconCls","state"]),{checked:(node.attr("checked")?true:undefined)});
  1111. item.text=node.children("span").html();
  1112. if(!item.text){
  1113. item.text=node.html();
  1114. }
  1115. var _11e=node.children("ul");
  1116. if(_11e.length){
  1117. item.children=[];
  1118. _11d(item.children,_11e);
  1119. }
  1120. aa.push(item);
  1121. });
  1122. };
  1123. };
  1124. var _11f=1;
  1125. var _120={render:function(_121,ul,data){
  1126. var _122=$.data(_121,"tree");
  1127. var opts=_122.options;
  1128. var _123=$(ul).prev(".tree-node");
  1129. var _124=_123.length?$(_121).tree("getNode",_123[0]):null;
  1130. var _125=_123.find("span.tree-indent, span.tree-hit").length;
  1131. var cc=_126.call(this,_125,data);
  1132. $(ul).append(cc.join(""));
  1133. function _126(_127,_128){
  1134. var cc=[];
  1135. for(var i=0;i<_128.length;i++){
  1136. var item=_128[i];
  1137. if(item.state!="open"&&item.state!="closed"){
  1138. item.state="open";
  1139. }
  1140. item.domId="_easyui_tree_"+_11f++;
  1141. cc.push("<li>");
  1142. cc.push("<div id=\""+item.domId+"\" class=\"tree-node"+(item.nodeCls?" "+item.nodeCls:"")+"\">");
  1143. for(var j=0;j<_127;j++){
  1144. cc.push("<span class=\"tree-indent\"></span>");
  1145. }
  1146. if(item.state=="closed"){
  1147. cc.push("<span class=\"tree-hit tree-collapsed\"></span>");
  1148. cc.push("<span class=\"tree-icon tree-folder "+(item.iconCls?item.iconCls:"")+"\"></span>");
  1149. }else{
  1150. if(item.children&&item.children.length){
  1151. cc.push("<span class=\"tree-hit tree-expanded\"></span>");
  1152. cc.push("<span class=\"tree-icon tree-folder tree-folder-open "+(item.iconCls?item.iconCls:"")+"\"></span>");
  1153. }else{
  1154. cc.push("<span class=\"tree-indent\"></span>");
  1155. cc.push("<span class=\"tree-icon tree-file "+(item.iconCls?item.iconCls:"")+"\"></span>");
  1156. }
  1157. }
  1158. if(this.hasCheckbox(_121,item)){
  1159. var flag=0;
  1160. if(_124&&_124.checkState=="checked"&&opts.cascadeCheck){
  1161. flag=1;
  1162. item.checked=true;
  1163. }else{
  1164. if(item.checked){
  1165. $.easyui.addArrayItem(_122.tmpIds,item.domId);
  1166. }
  1167. }
  1168. item.checkState=flag?"checked":"unchecked";
  1169. cc.push("<span class=\"tree-checkbox tree-checkbox"+flag+"\"></span>");
  1170. }else{
  1171. item.checkState=undefined;
  1172. item.checked=undefined;
  1173. }
  1174. cc.push("<span class=\"tree-title\">"+opts.formatter.call(_121,item)+"</span>");
  1175. cc.push("</div>");
  1176. if(item.children&&item.children.length){
  1177. var tmp=_126.call(this,_127+1,item.children);
  1178. cc.push("<ul style=\"display:"+(item.state=="closed"?"none":"block")+"\">");
  1179. cc=cc.concat(tmp);
  1180. cc.push("</ul>");
  1181. }
  1182. cc.push("</li>");
  1183. }
  1184. return cc;
  1185. };
  1186. },hasCheckbox:function(_129,item){
  1187. var _12a=$.data(_129,"tree");
  1188. var opts=_12a.options;
  1189. if(opts.checkbox){
  1190. if($.isFunction(opts.checkbox)){
  1191. if(opts.checkbox.call(_129,item)){
  1192. return true;
  1193. }else{
  1194. return false;
  1195. }
  1196. }else{
  1197. if(opts.onlyLeafCheck){
  1198. if(item.state=="open"&&!(item.children&&item.children.length)){
  1199. return true;
  1200. }
  1201. }else{
  1202. return true;
  1203. }
  1204. }
  1205. }
  1206. return false;
  1207. }};
  1208. $.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){
  1209. return node.text;
  1210. },filter:function(q,node){
  1211. var qq=[];
  1212. $.map($.isArray(q)?q:[q],function(q){
  1213. q=$.trim(q);
  1214. if(q){
  1215. qq.push(q);
  1216. }
  1217. });
  1218. for(var i=0;i<qq.length;i++){
  1219. var _12b=node.text.toLowerCase().indexOf(qq[i].toLowerCase());
  1220. if(_12b>=0){
  1221. return true;
  1222. }
  1223. }
  1224. return !qq.length;
  1225. },loader:function(_12c,_12d,_12e){
  1226. var opts=$(this).tree("options");
  1227. if(!opts.url){
  1228. return false;
  1229. }
  1230. $.ajax({type:opts.method,url:opts.url,data:_12c,dataType:"json",success:function(data){
  1231. _12d(data);
  1232. },error:function(){
  1233. _12e.apply(this,arguments);
  1234. }});
  1235. },loadFilter:function(data,_12f){
  1236. return data;
  1237. },view:_120,onBeforeLoad:function(node,_130){
  1238. },onLoadSuccess:function(node,data){
  1239. },onLoadError:function(){
  1240. },onClick:function(node){
  1241. },onDblClick:function(node){
  1242. },onBeforeExpand:function(node){
  1243. },onExpand:function(node){
  1244. },onBeforeCollapse:function(node){
  1245. },onCollapse:function(node){
  1246. },onBeforeCheck:function(node,_131){
  1247. },onCheck:function(node,_132){
  1248. },onBeforeSelect:function(node){
  1249. },onSelect:function(node){
  1250. },onContextMenu:function(e,node){
  1251. },onBeforeDrag:function(node){
  1252. },onStartDrag:function(node){
  1253. },onStopDrag:function(node){
  1254. },onDragEnter:function(_133,_134){
  1255. },onDragOver:function(_135,_136){
  1256. },onDragLeave:function(_137,_138){
  1257. },onBeforeDrop:function(_139,_13a,_13b){
  1258. },onDrop:function(_13c,_13d,_13e){
  1259. },onBeforeEdit:function(node){
  1260. },onAfterEdit:function(node){
  1261. },onCancelEdit:function(node){
  1262. }};
  1263. })(jQuery);