@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.
@@ -13855,15 +13855,15 @@ var AXTreeViewComponent = /** @class */ (function (_super) {
13855
13855
  if (node.children != null && node.children.length > 0) {
13856
13856
  node.children.selectChilds = function () {
13857
13857
  item.childeren.forEach(function (element) {
13858
- if (item.parentNode['select'] != true) {
13858
+ if (element['select'] != true) {
13859
13859
  _this.internalSelectItem(element, true);
13860
13860
  }
13861
13861
  });
13862
13862
  };
13863
13863
  node.children.unSelectChilds = function () {
13864
13864
  item.childeren.forEach(function (element) {
13865
- if (item.parentNode['select'] == true) {
13866
- _this.internalSelectItem(item.childeren, true);
13865
+ if (element['select'] == true) {
13866
+ _this.internalSelectItem(element, true);
13867
13867
  }
13868
13868
  });
13869
13869
  };