This is my html code to upload excel file
<span class="control-fileupload" >
<label for="file1" class="text-left">{{filePlaceHolder}}</label>
<input type="file" id="file1" value="" (change)="openFile($event)" >
</span>
But the problem is if i'm uploading same file twice the change function is not executing again because there is no change in input field.
Suppose i have uploaded abc.xls file once and there are some validation on this file and if i change the content of abc.xls and re upload it then change function is not re validating it again.
What changes i should make to work change function every time i upload a file whether file name is same or not.
I want to know how to write this click function in type script as i'm new to this.