I have this code
<input [(ngModel)]="search.Name" type="text" class="form-control" (keydown)="search()"
maxlength="40" placeholder="Search">
when i change the data in textfield then it is working but when i copy paste the value in textfield it does not show any record, copy paste is not working with keydown
event
I have tried with (ngModelChange)
but the same issue.