@magic-xpa/angular 4.800.0-dev480.202 → 4.800.0-dev480.206

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.
@@ -3059,7 +3059,8 @@
3059
3059
  RowMagicDirective.prototype.onClick = function ($event) {
3060
3060
  if (this.rowId != '') {
3061
3061
  this._task.insertEvent(engine.getGuiEventObj('click', "magicRow", +this.rowId));
3062
- event.cancelBubble = true;
3062
+ if (!MagicDirective.opened)
3063
+ event.cancelBubble = true;
3063
3064
  }
3064
3065
  };
3065
3066
  return RowMagicDirective;
@@ -3136,6 +3137,8 @@
3136
3137
  if (_this.htmlElement instanceof HTMLButtonElement)
3137
3138
  fromButton = true;
3138
3139
  _this.task.insertEvent(engine.getGuiEventObj(event, _this.id, +_this.rowId, fromButton));
3140
+ if (!MagicDirective.opened)
3141
+ e.cancelBubble = true;
3139
3142
  });
3140
3143
  });
3141
3144
  this.renderer.listen(this.htmlElement, 'change', function (e) {