TreeWithNode.js
上传用户:kimgenplus
上传日期:2016-06-05
资源大小:20877k
文件大小:3k
源码类别:

OA系统

开发平台:

Java

  1. /*
  2. Copyright (c) 2004-2006, The Dojo Foundation
  3. All Rights Reserved.
  4. Licensed under the Academic Free License version 2.1 or above OR the
  5. modified BSD license. For more information on Dojo licensing, see:
  6. http://dojotoolkit.org/community/licensing.shtml
  7. */
  8. dojo.require("dojo.lang.declare");
  9. dojo.provide("dojo.widget.TreeWithNode");
  10. dojo.declare("dojo.widget.TreeWithNode", null, function () {
  11. }, {loadStates:{UNCHECKED:"UNCHECKED", LOADING:"LOADING", LOADED:"LOADED"}, state:"UNCHECKED", objectId:"", isContainer:true, lockLevel:0, lock:function () {
  12. this.lockLevel++;
  13. }, unlock:function () {
  14. if (!this.lockLevel) {
  15. dojo.raise(this.widgetType + " unlock: not locked");
  16. }
  17. this.lockLevel--;
  18. }, expandLevel:0, loadLevel:0, hasLock:function () {
  19. return this.lockLevel > 0;
  20. }, isLocked:function () {
  21. var node = this;
  22. while (true) {
  23. if (node.lockLevel) {
  24. return true;
  25. }
  26. if (!node.parent || node.isTree) {
  27. break;
  28. }
  29. node = node.parent;
  30. }
  31. return false;
  32. }, flushLock:function () {
  33. this.lockLevel = 0;
  34. }, actionIsDisabled:function (action) {
  35. var disabled = false;
  36. if (dojo.lang.inArray(this.actionsDisabled, action)) {
  37. disabled = true;
  38. }
  39. if (this.isTreeNode) {
  40. if (!this.tree.allowAddChildToLeaf && action == this.actions.ADDCHILD && !this.isFolder) {
  41. disabled = true;
  42. }
  43. }
  44. return disabled;
  45. }, actionIsDisabledNow:function (action) {
  46. return this.actionIsDisabled(action) || this.isLocked();
  47. }, setChildren:function (childrenArray) {
  48. if (this.isTreeNode && !this.isFolder) {
  49. this.setFolder();
  50. } else {
  51. if (this.isTreeNode) {
  52. this.state = this.loadStates.LOADED;
  53. }
  54. }
  55. var hadChildren = this.children.length > 0;
  56. if (hadChildren && childrenArray) {
  57. this.destroyChildren();
  58. }
  59. if (childrenArray) {
  60. this.children = childrenArray;
  61. }
  62. var hasChildren = this.children.length > 0;
  63. if (this.isTreeNode && hasChildren != hadChildren) {
  64. this.viewSetHasChildren();
  65. }
  66. for (var i = 0; i < this.children.length; i++) {
  67. var child = this.children[i];
  68. if (!(child instanceof dojo.widget.Widget)) {
  69. child = this.children[i] = this.tree.createNode(child);
  70. var childWidgetCreated = true;
  71. } else {
  72. var childWidgetCreated = false;
  73. }
  74. if (!child.parent) {
  75. child.parent = this;
  76. if (this.tree !== child.tree) {
  77. child.updateTree(this.tree);
  78. }
  79. child.viewAddLayout();
  80. this.containerNode.appendChild(child.domNode);
  81. var message = {child:child, index:i, parent:this, childWidgetCreated:childWidgetCreated};
  82. delete dojo.widget.manager.topWidgets[child.widgetId];
  83. dojo.event.topic.publish(this.tree.eventNames.afterAddChild, message);
  84. }
  85. if (this.tree.eagerWidgetInstantiation) {
  86. dojo.lang.forEach(this.children, function (child) {
  87. child.setChildren();
  88. });
  89. }
  90. }
  91. }, doAddChild:function (child, index) {
  92. return this.addChild(child, index, true);
  93. }, addChild:function (child, index, dontPublishEvent) {
  94. if (dojo.lang.isUndefined(index)) {
  95. index = this.children.length;
  96. }
  97. if (!child.isTreeNode) {
  98. dojo.raise("You can only add TreeNode widgets to a " + this.widgetType + " widget!");
  99. return;
  100. }
  101. this.children.splice(index, 0, child);
  102. child.parent = this;
  103. child.addedTo(this, index, dontPublishEvent);
  104. delete dojo.widget.manager.topWidgets[child.widgetId];
  105. }, onShow:function () {
  106. this.animationInProgress = false;
  107. }, onHide:function () {
  108. this.animationInProgress = false;
  109. }});