@acorex/components 3.0.39 → 3.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14061,15 +14061,15 @@
14061
14061
  if (node.children != null && node.children.length > 0) {
14062
14062
  node.children.selectChilds = function () {
14063
14063
  item.childeren.forEach(function (element) {
14064
- if (item.parentNode['select'] != true) {
14064
+ if (element['select'] != true) {
14065
14065
  _this.internalSelectItem(element, true);
14066
14066
  }
14067
14067
  });
14068
14068
  };
14069
14069
  node.children.unSelectChilds = function () {
14070
14070
  item.childeren.forEach(function (element) {
14071
- if (item.parentNode['select'] == true) {
14072
- _this.internalSelectItem(item.childeren, true);
14071
+ if (element['select'] == true) {
14072
+ _this.internalSelectItem(element, true);
14073
14073
  }
14074
14074
  });
14075
14075
  };