@acorex/components 3.0.42 → 3.0.43

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.
@@ -14238,7 +14238,7 @@
14238
14238
  _this.seletedKeyFields.forEach(function (n) {
14239
14239
  if (n.includes(el[_this.keyField])) {
14240
14240
  if (el[_this.hasChildField] == true) {
14241
- if (_this.checkParents == false && _this.checkChilds == false) {
14241
+ if ((_this.checkParents == false && _this.checkChilds == false) || _this.checkChilds == false) {
14242
14242
  //select parent when check child and check parent is false TODO check this Action
14243
14243
  _this.selectItem(el);
14244
14244
  }
@@ -14253,7 +14253,7 @@
14253
14253
  }
14254
14254
  else if (_this.selectedFieldName != null) {
14255
14255
  if (el[_this.hasChildField] == true && el[_this.selectedFieldName] == true) {
14256
- if (_this.checkParents == false && _this.checkChilds == false) {
14256
+ if ((_this.checkParents == false && _this.checkChilds == false) || _this.checkChilds == false) {
14257
14257
  //select parent when check child and check parent is false TODO check this Action
14258
14258
  _this.selectItem(el);
14259
14259
  }