I\'m having trouble with the field when running my application on iPad.
On the desktop you click on the text box, type the text in and cl
Another crude workaround (for all characters):
document.addEventListener('keydown', function(e) { window.focus() $(':focus').focus() });