So I'm working on my first website project using Angular. It works great on a computer, but not on a phone. I have numeric input fields that calls a function using the "keydown.tab" event handler:
<input [(ngModel)]="inputs[i]" (keydown.tab) = "valueEntry(i)>".
You enter a number, press tab, a calculation is performed and the curser moves onto the next input.
So how would I do this same thing on a phone? The standard keyboard on my Samsung has a next button. So what would the event listener be for the next button on a virtual keyboard?
Thanks.