xtree.js
上传用户:huijianzhu
上传日期:2009-11-25
资源大小:9825k
文件大小:24k
源码类别:

电子政务应用

开发平台:

Java

  1. /*----------------------------------------------------------------------------
  2. |                       Cross Browser Tree Widget 1.17                        |
  3. |-----------------------------------------------------------------------------|
  4. |                          Created by Emil A Eklund                           |
  5. |                  (http://webfx.eae.net/contact.html#emil)                   |
  6. |                      For WebFX (http://webfx.eae.net/)                      |
  7. |-----------------------------------------------------------------------------|
  8. | An object based tree widget,  emulating the one found in microsoft windows, |
  9. | with persistence using cookies. Works in IE 5+, Mozilla and konqueror 3.    |
  10. |-----------------------------------------------------------------------------|
  11. |                   Copyright (c) 1999 - 2002 Emil A Eklund                   |
  12. |-----------------------------------------------------------------------------|
  13. | This software is provided "as is", without warranty of any kind, express or |
  14. | implied, including  but not limited  to the warranties of  merchantability, |
  15. | fitness for a particular purpose and noninfringement. In no event shall the |
  16. | authors or  copyright  holders be  liable for any claim,  damages or  other |
  17. | liability, whether  in an  action of  contract, tort  or otherwise, arising |
  18. | from,  out of  or in  connection with  the software or  the  use  or  other |
  19. | dealings in the software.                                                   |
  20. | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
  21. | This  software is  available under the  three different licenses  mentioned |
  22. | below.  To use this software you must chose, and qualify, for one of those. |
  23. | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
  24. | The WebFX Non-Commercial License          http://webfx.eae.net/license.html |
  25. | Permits  anyone the right to use the  software in a  non-commercial context |
  26. | free of charge.                                                             |
  27. | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
  28. | The WebFX Commercial license           http://webfx.eae.net/commercial.html |
  29. | Permits the  license holder the right to use  the software in a  commercial |
  30. | context. Such license must be specifically obtained, however it's valid for |
  31. | any number of  implementations of the licensed software.                    |
  32. | - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - |
  33. | GPL - The GNU General Public License    http://www.gnu.org/licenses/gpl.txt |
  34. | Permits anyone the right to use and modify the software without limitations |
  35. | as long as proper  credits are given  and the original  and modified source |
  36. | code are included. Requires  that the final product, software derivate from |
  37. | the original  source or any  software  utilizing a GPL  component, such  as |
  38. | this, is also licensed under the GPL license.                               |
  39. |-----------------------------------------------------------------------------|
  40. | Dependencies: xtree.css (To set up the CSS of the tree classes)             |
  41. |-----------------------------------------------------------------------------|
  42. | 2001-01-10 | Original Version Posted.                                       |
  43. | 2001-03-18 | Added getSelected and get/setBehavior  that can make it behave |
  44. |            | more like windows explorer, check usage for more information.  |
  45. | 2001-09-23 | Version 1.1 - New features included  keyboard  navigation (ie) |
  46. |            | and the ability  to add and  remove nodes dynamically and some |
  47. |            | other small tweaks and fixes.                                  |
  48. | 2002-01-27 | Version 1.11 - Bug fixes and improved mozilla support.         |
  49. | 2002-06-11 | Version 1.12 - Fixed a bug that prevented the indentation line |
  50. |            | from  updating correctly  under some  circumstances.  This bug |
  51. |            | happened when removing the last item in a subtree and items in |
  52. |            | siblings to the remove subtree where not correctly updated.    |
  53. | 2002-06-13 | Fixed a few minor bugs cased by the 1.12 bug-fix.              |
  54. | 2002-08-20 | Added usePersistence flag to allow disable of cookies.         |
  55. | 2002-10-23 | (1.14) Fixed a plus icon issue                                 |
  56. | 2002-10-29 | (1.15) Last changes broke more than they fixed. This version   |
  57. |            | is based on 1.13 and fixes the bugs 1.14 fixed withou breaking |
  58. |            | lots of other things.                                          |
  59. | 2003-02-15 | The  selected node can now be made visible even when  the tree |
  60. |            | control  loses focus.  It uses a new class  declaration in the |
  61. |            | css file '.webfx-tree-item a.selected-inactive', by default it |
  62. |            | puts a light-gray rectangle around the selected node.          |
  63. | 2003-03-16 | Adding target support after lots of lobbying...                |
  64. |-----------------------------------------------------------------------------|
  65. | Created 2000-12-11 | All changes are in the log above. | Updated 2003-03-16 |
  66. ----------------------------------------------------------------------------*/
  67. var webFXTreeConfig = {
  68. rootIcon        : 'imagestree/foldericon.png',
  69. openRootIcon    : 'imagestree/openfoldericon.png',
  70. folderIcon      : 'imagestree/foldericon.png',
  71. openFolderIcon  : 'imagestree/openfoldericon.png',
  72. fileIcon        : 'imagestree/file.png',
  73. iIcon           : 'imagestree/I.png',
  74. lIcon           : 'imagestree/L.png',
  75. lMinusIcon      : 'imagestree/Lminus.png',
  76. lPlusIcon       : 'imagestree/Lplus.png',
  77. tIcon           : 'imagestree/T.png',
  78. tMinusIcon      : 'imagestree/Tminus.png',
  79. tPlusIcon       : 'imagestree/Tplus.png',
  80. blankIcon       : 'imagestree/blank.png',
  81.     defaultId       : 'id1',
  82. defaultText     : 'Tree Item',
  83. defaultAction   : 'javascript:void(0);',
  84. defaultBehavior : 'classic',
  85. usePersistence : true
  86. };
  87. var webFXTreeHandler = {
  88. idCounter : 0,
  89. allCounter: 0,
  90. idPrefix  : "webfx-tree-object-",
  91. all       : {},
  92. behavior  : null,
  93. selected  : null,
  94. onSelect  : null, /* should be part of tree, not handler */
  95. getId     : function() { return this.idPrefix + this.idCounter++; },
  96. toggle    : function (oItem) { this.all[oItem.id.replace('-plus','')].toggle(); },
  97. select    : function (oItem) { this.all[oItem.id.replace('-icon','')].select(); },
  98. focus     : function (oItem) { this.all[oItem.id.replace('-anchor','')].focus(); },
  99. blur      : function (oItem) { this.all[oItem.id.replace('-anchor','')].blur(); },
  100. keydown   : function (oItem, e) { return this.all[oItem.id].keydown(e.keyCode); },
  101. cookies   : new WebFXCookie(),
  102. insertHTMLBeforeEnd : function (oElement, sHTML) {
  103. if (oElement.insertAdjacentHTML != null) {
  104. oElement.insertAdjacentHTML("BeforeEnd", sHTML)
  105. return;
  106. }
  107. var df; // DocumentFragment
  108. var r = oElement.ownerDocument.createRange();
  109. r.selectNodeContents(oElement);
  110. r.collapse(false);
  111. df = r.createContextualFragment(sHTML);
  112. oElement.appendChild(df);
  113. }
  114. };
  115. /*
  116.  * WebFXCookie class
  117.  */
  118. function WebFXCookie() {
  119. if (document.cookie.length) { this.cookies = ' ' + document.cookie; }
  120. }
  121. WebFXCookie.prototype.setCookie = function (key, value) {
  122. document.cookie = key + "=" + escape(value);
  123. }
  124. WebFXCookie.prototype.getCookie = function (key) {
  125. if (this.cookies) {
  126. var start = this.cookies.indexOf(' ' + key + '=');
  127. if (start == -1) { return null; }
  128. var end = this.cookies.indexOf(";", start);
  129. if (end == -1) { end = this.cookies.length; }
  130. end -= start;
  131. var cookie = this.cookies.substr(start,end);
  132. return unescape(cookie.substr(cookie.indexOf('=') + 1, cookie.length - cookie.indexOf('=') + 1));
  133. }
  134. else { return null; }
  135. }
  136. /*
  137.  * WebFXTreeAbstractNode class
  138.  */
  139. // edited 2004-7-15 by zww
  140. // can set id property
  141. function WebFXTreeAbstractNode(sText, sId, sAction, sTarget) {
  142. this.childNodes  = [];
  143. //id can be defined by youself
  144. this.id     = sId || webFXTreeHandler.getId();  //webFXTreeHandler.getId();
  145. this.text   = sText || webFXTreeConfig.defaultText;
  146. this.action = sAction || webFXTreeConfig.defaultAction;
  147. this.target = sTarget || "";
  148. this._last  = false;
  149. webFXTreeHandler.all[this.id] = this;
  150. //webFXTreeHandler.all[webFXTreeHandler.allCounter++] = this;
  151. }
  152. /*
  153.  * To speed thing up if you're adding multiple nodes at once (after load)
  154.  * use the bNoIdent parameter to prevent automatic re-indentation and call
  155.  * the obj.ident() method manually once all nodes has been added.
  156.  */
  157. WebFXTreeAbstractNode.prototype.add = function (node, bNoIdent) {
  158. node.parentNode = this;
  159. this.childNodes[this.childNodes.length] = node;
  160. var root = this;
  161. if (this.childNodes.length >= 2) {
  162. this.childNodes[this.childNodes.length - 2]._last = false;
  163. }
  164. while (root.parentNode) { root = root.parentNode; }
  165. if (root.rendered) {
  166. if (this.childNodes.length >= 2) {
  167. document.getElementById(this.childNodes[this.childNodes.length - 2].id + '-plus').src = ((this.childNodes[this.childNodes.length -2].folder)?((this.childNodes[this.childNodes.length -2].open)?webFXTreeConfig.tMinusIcon:webFXTreeConfig.tPlusIcon):webFXTreeConfig.tIcon);
  168. this.childNodes[this.childNodes.length - 2].plusIcon = webFXTreeConfig.tPlusIcon;
  169. this.childNodes[this.childNodes.length - 2].minusIcon = webFXTreeConfig.tMinusIcon;
  170. this.childNodes[this.childNodes.length - 2]._last = false;
  171. }
  172. this._last = true;
  173. var foo = this;
  174. while (foo.parentNode) {
  175. for (var i = 0; i < foo.parentNode.childNodes.length; i++) {
  176. if (foo.id == foo.parentNode.childNodes[i].id) { break; }
  177. }
  178. if (i == foo.parentNode.childNodes.length - 1) { foo.parentNode._last = true; }
  179. else { foo.parentNode._last = false; }
  180. foo = foo.parentNode;
  181. }
  182. webFXTreeHandler.insertHTMLBeforeEnd(document.getElementById(this.id + '-cont'), node.toString());
  183. if ((!this.folder) && (!this.openIcon)) {
  184. this.icon = webFXTreeConfig.folderIcon;
  185. this.openIcon = webFXTreeConfig.openFolderIcon;
  186. }
  187. if (!this.folder) { this.folder = true; this.collapse(true); }
  188. if (!bNoIdent) { this.indent(); }
  189. }
  190. return node;
  191. }
  192. WebFXTreeAbstractNode.prototype.toggle = function() {
  193. if (this.folder) {
  194. if (this.open) { this.collapse(); }
  195. else { this.expand(); }
  196. } }
  197. WebFXTreeAbstractNode.prototype.select = function() {
  198. document.getElementById(this.id + '-anchor').focus();
  199. }
  200. WebFXTreeAbstractNode.prototype.deSelect = function() {
  201. document.getElementById(this.id + '-anchor').className = '';
  202. webFXTreeHandler.selected = null;
  203. }
  204. WebFXTreeAbstractNode.prototype.focus = function() {
  205. if ((webFXTreeHandler.selected) && (webFXTreeHandler.selected != this)) { webFXTreeHandler.selected.deSelect(); }
  206. webFXTreeHandler.selected = this;
  207. if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.openIcon; }
  208. document.getElementById(this.id + '-anchor').className = 'selected';
  209. document.getElementById(this.id + '-anchor').focus();
  210. if (webFXTreeHandler.onSelect) { webFXTreeHandler.onSelect(this); }
  211. }
  212. WebFXTreeAbstractNode.prototype.blur = function() {
  213. if ((this.openIcon) && (webFXTreeHandler.behavior != 'classic')) { document.getElementById(this.id + '-icon').src = this.icon; }
  214. document.getElementById(this.id + '-anchor').className = 'selected-inactive';
  215. }
  216. WebFXTreeAbstractNode.prototype.doExpand = function() {
  217. if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.openIcon; }
  218. if (this.childNodes.length) {  document.getElementById(this.id + '-cont').style.display = 'block'; }
  219. this.open = true;
  220. if (webFXTreeConfig.usePersistence) {
  221. webFXTreeHandler.cookies.setCookie(this.id, '1');
  222. } }
  223. WebFXTreeAbstractNode.prototype.doCollapse = function() {
  224. if (webFXTreeHandler.behavior == 'classic') { document.getElementById(this.id + '-icon').src = this.icon; }
  225. if (this.childNodes.length) { document.getElementById(this.id + '-cont').style.display = 'none'; }
  226. this.open = false;
  227. if (webFXTreeConfig.usePersistence) {
  228. webFXTreeHandler.cookies.setCookie(this.id, '0');
  229. } }
  230. WebFXTreeAbstractNode.prototype.expandAll = function() {
  231. this.expandChildren();
  232. if ((this.folder) && (!this.open)) { this.expand(); }
  233. }
  234. WebFXTreeAbstractNode.prototype.expandChildren = function() {
  235. for (var i = 0; i < this.childNodes.length; i++) {
  236. this.childNodes[i].expandAll();
  237. } }
  238. WebFXTreeAbstractNode.prototype.collapseAll = function() {
  239. this.collapseChildren();
  240. if ((this.folder) && (this.open)) { this.collapse(true); }
  241. }
  242. WebFXTreeAbstractNode.prototype.collapseChildren = function() {
  243. for (var i = 0; i < this.childNodes.length; i++) {
  244. this.childNodes[i].collapseAll();
  245. } }
  246. WebFXTreeAbstractNode.prototype.indent = function(lvl, del, last, level, nodesLeft) {
  247. /*
  248.  * Since we only want to modify items one level below ourself,
  249.  * and since the rightmost indentation position is occupied by
  250.  * the plus icon we set this to -2
  251.  */
  252. if (lvl == null) { lvl = -2; }
  253. var state = 0;
  254. for (var i = this.childNodes.length - 1; i >= 0 ; i--) {
  255. state = this.childNodes[i].indent(lvl + 1, del, last, level);
  256. if (state) { return; }
  257. }
  258. if (del) {
  259. if ((level >= this._level) && (document.getElementById(this.id + '-plus'))) {
  260. if (this.folder) {
  261. document.getElementById(this.id + '-plus').src = (this.open)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.lPlusIcon;
  262. this.plusIcon = webFXTreeConfig.lPlusIcon;
  263. this.minusIcon = webFXTreeConfig.lMinusIcon;
  264. }
  265. else if (nodesLeft) { document.getElementById(this.id + '-plus').src = webFXTreeConfig.lIcon; }
  266. return 1;
  267. } }
  268. var foo = document.getElementById(this.id + '-indent-' + lvl);
  269. if (foo) {
  270. if ((foo._last) || ((del) && (last))) { foo.src =  webFXTreeConfig.blankIcon; }
  271. else { foo.src =  webFXTreeConfig.iIcon; }
  272. }
  273. return 0;
  274. }
  275. /*
  276.  * WebFXTree class
  277.  */
  278. function WebFXTree(sText, sId, sAction, sTarget, sBehavior, sIcon, sOpenIcon) {
  279. this.base = WebFXTreeAbstractNode;
  280. this.base(sText, sId, sAction, sTarget);
  281. this.icon      = sIcon || webFXTreeConfig.rootIcon;
  282. this.openIcon  = sOpenIcon || webFXTreeConfig.openRootIcon;
  283. /* Defaults to open */
  284. if (webFXTreeConfig.usePersistence) {
  285. this.open  = (webFXTreeHandler.cookies.getCookie(this.id) == '0')?false:true;
  286. } else { this.open  = true; }
  287. this.folder    = true;
  288. this.rendered  = false;
  289. this.onSelect  = null;
  290. if (!webFXTreeHandler.behavior) {  webFXTreeHandler.behavior = sBehavior || webFXTreeConfig.defaultBehavior; }
  291. }
  292. WebFXTree.prototype = new WebFXTreeAbstractNode;
  293. WebFXTree.prototype.setBehavior = function (sBehavior) {
  294. webFXTreeHandler.behavior =  sBehavior;
  295. };
  296. WebFXTree.prototype.getBehavior = function (sBehavior) {
  297. return webFXTreeHandler.behavior;
  298. };
  299. WebFXTree.prototype.getSelected = function() {
  300. if (webFXTreeHandler.selected) { return webFXTreeHandler.selected; }
  301. else { return null; }
  302. }
  303. WebFXTree.prototype.remove = function() { }
  304. WebFXTree.prototype.expand = function() {
  305. this.doExpand();
  306. }
  307. WebFXTree.prototype.collapse = function(b) {
  308. if (!b) { this.focus(); }
  309. this.doCollapse();
  310. }
  311. WebFXTree.prototype.getFirst = function() {
  312. return null;
  313. }
  314. WebFXTree.prototype.getLast = function() {
  315. return null;
  316. }
  317. WebFXTree.prototype.getNextSibling = function() {
  318. return null;
  319. }
  320. WebFXTree.prototype.getPreviousSibling = function() {
  321. return null;
  322. }
  323. WebFXTree.prototype.keydown = function(key) {
  324. if (key == 39) {
  325. if (!this.open) { this.expand(); }
  326. else if (this.childNodes.length) { this.childNodes[0].select(); }
  327. return false;
  328. }
  329. if (key == 37) { this.collapse(); return false; }
  330. if ((key == 40) && (this.open) && (this.childNodes.length)) { this.childNodes[0].select(); return false; }
  331. return true;
  332. }
  333. WebFXTree.prototype.toString = function() {
  334. var str = "<div id="" + this.id + "" ondblclick="webFXTreeHandler.toggle(this);" class="webfx-tree-item" onkeydown="return webFXTreeHandler.keydown(this, event)">" +
  335. "<img id="" + this.id + "-icon" class="webfx-tree-icon" src="" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "" onclick="webFXTreeHandler.select(this);">" +
  336. "<a href="" + this.action + "" id="" + this.id + "-anchor" onfocus="webFXTreeHandler.focus(this);" onblur="webFXTreeHandler.blur(this);"" +
  337. (this.target ? " target="" + this.target + """ : "") +
  338. ">" + this.text + "</a></div>" +
  339. "<div id="" + this.id + "-cont" class="webfx-tree-container" style="display: " + ((this.open)?'block':'none') + ";">";
  340. var sb = [];
  341. for (var i = 0; i < this.childNodes.length; i++) {
  342. sb[i] = this.childNodes[i].toString(i, this.childNodes.length);
  343. }
  344. this.rendered = true;
  345. return str + sb.join("") + "</div>";
  346. };
  347. /*
  348.  * WebFXTreeItem class
  349.  */
  350. function WebFXTreeItem(sText, sId, sAction, sTarget, eParent, sIcon, sOpenIcon) {
  351. this.base = WebFXTreeAbstractNode;
  352. this.base(sText, sId, sAction, sTarget);
  353. /* Defaults to close */
  354. if (webFXTreeConfig.usePersistence) {
  355. this.open = (webFXTreeHandler.cookies.getCookie(this.id) == '1')?true:false;
  356. } else { this.open = false; }
  357. if (sIcon) { this.icon = sIcon; }
  358. if (sOpenIcon) { this.openIcon = sOpenIcon; }
  359. if (eParent) { eParent.add(this); }
  360. }
  361. WebFXTreeItem.prototype = new WebFXTreeAbstractNode;
  362. WebFXTreeItem.prototype.remove = function() {
  363. var iconSrc = document.getElementById(this.id + '-plus').src;
  364. var parentNode = this.parentNode;
  365. var prevSibling = this.getPreviousSibling(true);
  366. var nextSibling = this.getNextSibling(true);
  367. var folder = this.parentNode.folder;
  368. var last = ((nextSibling) && (nextSibling.parentNode) && (nextSibling.parentNode.id == parentNode.id))?false:true;
  369. this.getPreviousSibling().focus();
  370. this._remove();
  371. if (parentNode.childNodes.length == 0) {
  372. document.getElementById(parentNode.id + '-cont').style.display = 'none';
  373. parentNode.doCollapse();
  374. parentNode.folder = false;
  375. parentNode.open = false;
  376. }
  377. if (!nextSibling || last) { parentNode.indent(null, true, last, this._level, parentNode.childNodes.length); }
  378. if ((prevSibling == parentNode) && !(parentNode.childNodes.length)) {
  379. prevSibling.folder = false;
  380. prevSibling.open = false;
  381. iconSrc = document.getElementById(prevSibling.id + '-plus').src;
  382. iconSrc = iconSrc.replace('minus', '').replace('plus', '');
  383. document.getElementById(prevSibling.id + '-plus').src = iconSrc;
  384. document.getElementById(prevSibling.id + '-icon').src = webFXTreeConfig.fileIcon;
  385. }
  386. if (document.getElementById(prevSibling.id + '-plus')) {
  387. if (parentNode == prevSibling.parentNode) {
  388. iconSrc = iconSrc.replace('minus', '').replace('plus', '');
  389. document.getElementById(prevSibling.id + '-plus').src = iconSrc;
  390. } } }
  391. WebFXTreeItem.prototype._remove = function() {
  392. for (var i = this.childNodes.length - 1; i >= 0; i--) {
  393. this.childNodes[i]._remove();
  394.   }
  395. for (var i = 0; i < this.parentNode.childNodes.length; i++) {
  396. if (this == this.parentNode.childNodes[i]) {
  397. for (var j = i; j < this.parentNode.childNodes.length; j++) {
  398. this.parentNode.childNodes[j] = this.parentNode.childNodes[j+1];
  399. }
  400. this.parentNode.childNodes.length -= 1;
  401. if (i + 1 == this.parentNode.childNodes.length) { this.parentNode._last = true; }
  402. break;
  403. } }
  404. webFXTreeHandler.all[this.id] = null;
  405. var tmp = document.getElementById(this.id);
  406. if (tmp) { tmp.parentNode.removeChild(tmp); }
  407. tmp = document.getElementById(this.id + '-cont');
  408. if (tmp) { tmp.parentNode.removeChild(tmp); }
  409. }
  410. WebFXTreeItem.prototype.expand = function() {
  411. this.doExpand();
  412. document.getElementById(this.id + '-plus').src = this.minusIcon;
  413. }
  414. WebFXTreeItem.prototype.collapse = function(b) {
  415. if (!b) { this.focus(); }
  416. this.doCollapse();
  417. document.getElementById(this.id + '-plus').src = this.plusIcon;
  418. }
  419. WebFXTreeItem.prototype.getFirst = function() {
  420. return this.childNodes[0];
  421. }
  422. WebFXTreeItem.prototype.getLast = function() {
  423. if (this.childNodes[this.childNodes.length - 1].open) { return this.childNodes[this.childNodes.length - 1].getLast(); }
  424. else { return this.childNodes[this.childNodes.length - 1]; }
  425. }
  426. WebFXTreeItem.prototype.getNextSibling = function() {
  427. for (var i = 0; i < this.parentNode.childNodes.length; i++) {
  428. if (this == this.parentNode.childNodes[i]) { break; }
  429. }
  430. if (++i == this.parentNode.childNodes.length) { return this.parentNode.getNextSibling(); }
  431. else { return this.parentNode.childNodes[i]; }
  432. }
  433. WebFXTreeItem.prototype.getPreviousSibling = function(b) {
  434. for (var i = 0; i < this.parentNode.childNodes.length; i++) {
  435. if (this == this.parentNode.childNodes[i]) { break; }
  436. }
  437. if (i == 0) { return this.parentNode; }
  438. else {
  439. if ((this.parentNode.childNodes[--i].open) || (b && this.parentNode.childNodes[i].folder)) { return this.parentNode.childNodes[i].getLast(); }
  440. else { return this.parentNode.childNodes[i]; }
  441. } }
  442. WebFXTreeItem.prototype.keydown = function(key) {
  443. if ((key == 39) && (this.folder)) {
  444. if (!this.open) { this.expand(); }
  445. else { this.getFirst().select(); }
  446. return false;
  447. }
  448. else if (key == 37) {
  449. if (this.open) { this.collapse(); }
  450. else { this.parentNode.select(); }
  451. return false;
  452. }
  453. else if (key == 40) {
  454. if (this.open) { this.getFirst().select(); }
  455. else {
  456. var sib = this.getNextSibling();
  457. if (sib) { sib.select(); }
  458. }
  459. return false;
  460. }
  461. else if (key == 38) { this.getPreviousSibling().select(); return false; }
  462. return true;
  463. }
  464. WebFXTreeItem.prototype.toString = function (nItem, nItemCount) {
  465. var foo = this.parentNode;
  466. var indent = '';
  467. if (nItem + 1 == nItemCount) { this.parentNode._last = true; }
  468. var i = 0;
  469. while (foo.parentNode) {
  470. foo = foo.parentNode;
  471. indent = "<img id="" + this.id + "-indent-" + i + "" src="" + ((foo._last)?webFXTreeConfig.blankIcon:webFXTreeConfig.iIcon) + "">" + indent;
  472. i++;
  473. }
  474. this._level = i;
  475. if (this.childNodes.length) { this.folder = 1; }
  476. else { this.open = false; }
  477. if ((this.folder) || (webFXTreeHandler.behavior != 'classic')) {
  478. if (!this.icon) { this.icon = webFXTreeConfig.folderIcon; }
  479. if (!this.openIcon) { this.openIcon = webFXTreeConfig.openFolderIcon; }
  480. }
  481. else if (!this.icon) { this.icon = webFXTreeConfig.fileIcon; }
  482. var label = this.text.replace(/</g, '&lt;').replace(/>/g, '&gt;');
  483. var str = "<div id="" + this.id + "" ondblclick="webFXTreeHandler.toggle(this);" class="webfx-tree-item" onkeydown="return webFXTreeHandler.keydown(this, event)" nowrap>" +
  484. indent +
  485. "<img id="" + this.id + "-plus" src="" + ((this.folder)?((this.open)?((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon):((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon)):((this.parentNode._last)?webFXTreeConfig.lIcon:webFXTreeConfig.tIcon)) + "" onclick="webFXTreeHandler.toggle(this);">" +
  486. "<img id="" + this.id + "-icon" class="webfx-tree-icon" src="" + ((webFXTreeHandler.behavior == 'classic' && this.open)?this.openIcon:this.icon) + "" onclick="webFXTreeHandler.select(this);">" +
  487. "<a href="" + this.action + "" id="" + this.id + "-anchor" onfocus="webFXTreeHandler.focus(this);" onblur="webFXTreeHandler.blur(this);"" +
  488. (this.target ? " target="" + this.target + """ : "") +
  489. " style="" nowrap>" + label + "</a></div>" +
  490. "<div id="" + this.id + "-cont" class="webfx-tree-container" style="display: " + ((this.open)?'block':'none') + ";">";
  491. var sb = [];
  492. for (var i = 0; i < this.childNodes.length; i++) {
  493. sb[i] = this.childNodes[i].toString(i,this.childNodes.length);
  494. }
  495. this.plusIcon = ((this.parentNode._last)?webFXTreeConfig.lPlusIcon:webFXTreeConfig.tPlusIcon);
  496. this.minusIcon = ((this.parentNode._last)?webFXTreeConfig.lMinusIcon:webFXTreeConfig.tMinusIcon);
  497. return str + sb.join("") + "</div>";
  498. }