I have a text input box configured with event listeners such that when a user presses the Enter key, the app advances to the next screen. The problem is, if the mouse cursor is hovering over the text input box when the user enters data into the box then presses the Enter key, the mouse cursor stays thereafter as the vertical bar cursor of the text input box.
How to force the mouse cursor back to the system cursor when it's no longer over a text input box? I tried cursorManager.removeAllCursors(); but it had no effect. Any ideas welcome. Thanks in advance.
