tree.js
上传用户:junmaots
上传日期:2022-07-09
资源大小:2450k
文件大小:6k
源码类别:

Jsp/Servlet

开发平台:

Java

  1. // Title: Tigra Tree
  2. // Description: See the demo at url
  3. // URL: http://www.softcomplex.com/products/tigra_menu_tree/
  4. // Version: 1.0
  5. // Date: 07-20-2002 (mm-dd-yyyy)
  6. // Contact: feedback@softcomplex.com (specify product title in the subject)
  7. // Notes: Registration needed to use this script on your web site.
  8. //  Registration for this version (1.0) is free of charge.
  9. // Visit official site for details
  10. function tree (a_items, a_template) {
  11. this.a_tpl      = a_template;
  12. this.a_config   = a_items;
  13. this.o_root     = this;
  14. this.a_index    = [];
  15. this.o_selected = null;
  16. this.n_depth    = -1;
  17. var o_icone = new Image(),
  18. o_iconl = new Image();
  19. o_icone.src = a_template['icon_e'];
  20. o_iconl.src = a_template['icon_l'];
  21. a_template['im_e'] = o_icone;
  22. a_template['im_l'] = o_iconl;
  23. for (var i = 0; i < 64; i++)
  24. if (a_template['icon_' + i]) {
  25. var o_icon = new Image();
  26. a_template['im_' + i] = o_icon;
  27. o_icon.src = a_template['icon_' + i];
  28. }
  29. this.toggle = function (n_id) { var o_item = this.a_index[n_id]; o_item.open(o_item.b_opened) };
  30. this.select = function (n_id) { return this.a_index[n_id].select(); };
  31. this.mout   = function (n_id) { this.a_index[n_id].upstatus(true) };
  32. this.mover  = function (n_id) { this.a_index[n_id].upstatus() };
  33. this.a_children = [];
  34. for (var i = 0; i < a_items.length; i++)
  35. new tree_item(this, i);
  36. this.n_id = trees.length;
  37. trees[this.n_id] = this;
  38. for (var i = 0; i < this.a_children.length; i++) {
  39. document.write(this.a_children[i].init());
  40. this.a_children[i].open();
  41. }
  42. }
  43. function tree_item (o_parent, n_order) {
  44. this.n_depth  = o_parent.n_depth + 1;
  45. this.a_config = o_parent.a_config[n_order + (this.n_depth ? 2 : 0)];
  46. if (!this.a_config) return;
  47. this.o_root    = o_parent.o_root;
  48. this.o_parent  = o_parent;
  49. this.n_order   = n_order;
  50. this.b_opened  = !this.n_depth;
  51. this.n_id = this.o_root.a_index.length;
  52. this.o_root.a_index[this.n_id] = this;
  53. o_parent.a_children[n_order] = this;
  54. this.a_children = [];
  55. for (var i = 0; i < this.a_config.length - 2; i++)
  56. new tree_item(this, i);
  57. this.get_icon = item_get_icon;
  58. this.open     = item_open;
  59. this.select   = item_select;
  60. this.init     = item_init;
  61. this.upstatus = item_upstatus;
  62. this.is_last  = function () { return this.n_order == this.o_parent.a_children.length - 1 };
  63. }
  64. function item_open (b_close) {
  65. var o_idiv = get_element('i_div' + this.n_id);
  66. if (!o_idiv) return;
  67. if (!o_idiv.innerHTML) {
  68. var a_children = [];
  69. for (var i = 0; i < this.a_children.length; i++)
  70. a_children[i]= this.a_children[i].init();
  71. o_idiv.innerHTML = a_children.join('');
  72. }
  73. o_idiv.style.display = (b_close ? 'none' : 'block');
  74. this.b_opened = !b_close;
  75. var o_jicon = document.images['j_img' + this.n_id],
  76. o_iicon = document.images['i_img' + this.n_id];
  77. if (o_jicon) o_jicon.src = this.get_icon(true);
  78. if (o_iicon) o_iicon.src = this.get_icon();
  79. this.upstatus();
  80. }
  81. function item_select (b_deselect) {
  82. if (!b_deselect) {
  83. var o_olditem = this.o_root.o_selected;
  84. this.o_root.o_selected = this;
  85. if (o_olditem) o_olditem.select(true);
  86. }
  87. var o_iicon = document.images['i_img' + this.n_id];
  88. if (o_iicon) o_iicon.src = this.get_icon();
  89. get_element('i_txt' + this.n_id).style.fontWeight = b_deselect ? 'normal' : 'bold';
  90. this.upstatus();
  91. return Boolean(this.a_config[1]);
  92. }
  93. function item_upstatus (b_clear) {
  94. window.setTimeout('window.status="' + (b_clear ? '' : this.a_config[0] + (this.a_config[1] ? ' ('+ this.a_config[1] + ')' : '')) + '"', 10);
  95. }
  96. function item_init () {
  97. var a_offset = [],
  98. o_current_item = this.o_parent;
  99. for (var i = this.n_depth; i > 1; i--) {
  100. a_offset[i] = '<img src="' + this.o_root.a_tpl[o_current_item.is_last() ? 'icon_e' : 'icon_l'] + '" border="0" align="absbottom">';
  101. o_current_item = o_current_item.o_parent;
  102. }
  103. return '<table cellpadding="0" cellspacing="0" border="0"><tr><td nowrap>' + (this.n_depth ? a_offset.join('') + (this.a_children.length ? '<a href="javascript: trees[' + this.o_root.n_id + '].toggle(' + this.n_id + ')" onmouseover="trees[' + this.o_root.n_id + '].mover(' + this.n_id + ')" onmouseout="trees[' + this.o_root.n_id + '].mout(' + this.n_id + ')"><img src="' + this.get_icon(true) + '" border="0" align="absbottom" name="j_img' + this.n_id + '"></a>' : '<img src="' + this.get_icon(true) + '" border="0" align="absbottom">') : '') + '<a href="' + this.a_config[1] + '" target="' + this.o_root.a_tpl['target'] + '" onclick="return trees[' + this.o_root.n_id + '].select(' + this.n_id + ')" ondblclick="trees[' + this.o_root.n_id + '].toggle(' + this.n_id + ')" onmouseover="trees[' + this.o_root.n_id + '].mover(' + this.n_id + ')" onmouseout="trees[' + this.o_root.n_id + '].mout(' + this.n_id + ')" class="t' + this.o_root.n_id + 'i" id="i_txt' + this.n_id + '"><img src="' + this.get_icon() + '" border="0" align="absbottom" name="i_img' + this.n_id + '" class="t' + this.o_root.n_id + 'im">' + this.a_config[0] + '</a></td></tr></table>' + (this.a_children.length ? '<div id="i_div' + this.n_id + '" style="display:none"></div>' : '');
  104. }
  105. function item_get_icon (b_junction) {
  106. // alert('icon_' + ((this.n_depth ? 0 : 32) + (this.a_children.length ? 16 : 0) + (this.a_children.length && this.b_opened ? 8 : 0) + (!b_junction && this.o_root.o_selected == this ? 4 : 0) + (b_junction ? 2 : 0) + (b_junction && this.is_last() ? 1 : 0)));
  107. return this.o_root.a_tpl['icon_' + ((this.n_depth ? 0 : 32) + (this.a_children.length ? 16 : 0) + (this.a_children.length && this.b_opened ? 8 : 0) + (!b_junction && this.o_root.o_selected == this ? 4 : 0) + (b_junction ? 2 : 0) + (b_junction && this.is_last() ? 1 : 0))];
  108. }
  109. var trees = [];
  110. get_element = document.all ?
  111. function (s_id) { return document.all[s_id] } :
  112. function (s_id) { return document.getElementById(s_id) };