this is my template:
<ng-template #template>
<input #newimg type="file" class="col-md-10" (change)="fileChange($event)"/>
</ng-template>
I cant get reference to #newimg
when its inside ng-template
(it works fine if i change ng-template
to div
!)
@ViewChild('newimg') img: ElementRef; //doesnt work
I need to set its value to empty after image uploaded but its always undefined.