You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<div *ngFor="let layer of layers">
<ko-group>
<div *ngFor="let run of [0,1,2,3]">
<ko-line [config]="generateLineConfig(layer, run)"></ko-line>
</div>
<ko-rect [config]="generateRectangleConfig(layer)"
(click)="mouseSingleClickEvenet($event)"
(mouseout)="mouseOutOfObject($event)"
(mousemove)="mouseInObject($event)">
</ko-rect>
</ko-group>
<div *ngIf="someDataThatCanBeNull">
<ko-rect [config]="genereateRectangleConfig"></ko-rect>
</div>
</div>
</ko-layer> `
The Problem is here, when the part with the ngif statement is not null it should appear, but it doesen't every time, when it gets redrawn it shows, that the data gets loaded but it doesn't appear.
Could you fix this or maybe help me out ?
br
D4rkn
The text was updated successfully, but these errors were encountered:
Is this still happening if you remove the unnecessary divs ? <ko-line *ngFor="let run of [0,1,2,3]" [config]="generateLineConfig(layer, run)"></ko-line>
and <ko-rect *ngIf="someDataThatCanBeNull" [config]="genereateRectangleConfig"></ko-rect>
So i tried this code:
`<ko-layer #howerlayer>
The Problem is here, when the part with the ngif statement is not null it should appear, but it doesen't every time, when it gets redrawn it shows, that the data gets loaded but it doesn't appear.
Could you fix this or maybe help me out ?
br
D4rkn
The text was updated successfully, but these errors were encountered: