Could sb please help me with this?
I have analyzed the problem a little and tried to do it on my own, but I have new issues:
I have added element.addEventListener("keyup", ...) for all of my Flyout's controls (buttons, textboxes). What I now want to do is to check whether the pressed key is an 'Enter' key. And then call the same method which is called when user taps 'Ok' button.
The problem is, that keyup is catched on all keys, but not on 'enter' hit. Whenever I hit enter, it's catched by <button> which is placed on my currently displayed page. Can I turn off catching 'enter' by this button? I think this would solve my problem.
Thanks for your time,
Greetings.