added
TooltipDirective.prototype.ngAfterContentInit = function () { this.layerProvider.ref.bindTooltip(this); };
It fixed the issue.
Issue 2
Even when I have issue 1 fixed, it is not possible to change 'permanent' value.
Having <yaga-tooltip [permanent]="boolVariable"> , I can set boolVariable, but it has no effect for the tooltip.
Hi All,
Issue 1
<yaga-tooltip [permanent]="true">
does not work at all. I did manual changes in tooltip.directive.js_this.layerProvider.ref.bindTooltip(_this);
TooltipDirective.prototype.ngAfterContentInit = function () { this.layerProvider.ref.bindTooltip(this); };
It fixed the issue.Issue 2 Even when I have issue 1 fixed, it is not possible to change 'permanent' value. Having
<yaga-tooltip [permanent]="boolVariable">
, I can set boolVariable, but it has no effect for the tooltip.Could you fix both issues please?