The change event is only called after the focus of the input has changed. How can I make it so that the event fires on every keypress?
I just used the event input and it worked fine as follows:
in .html file :
in .ts file :
onSearchChange(searchValue: string): void { console.log(searchValue); }