I'm trying to make a reusable component which implements the Simple-Keyboard module, which is a customisable onscreen touch keyboard.
I then want to call it on various pages of my application which has form inputs.
There are lots of single page examples of this and I have also successfully made a multiple input example which my demo is based on.
I've managed to call the keyboard from my form successfully and I can see in the console that the name of the field is picked up and the key inputs registered. However I'm unable to get the two-way binding required to return the value in the chosen field.
Here is my Stackblitz code:
Angular Multiple Form Reusable Touch Keyboard
I've tried a number of ways to hook up the two-way binding, without success. I was trying to base it on various examples using the @Input / @Output property bindings, with no luck.
Could someone help?