I'm running a webapp on Android galaxytab.
I have 3 textbox with FocusHandler
-s erasing the textbox content onFocus
.
This works well but if the user uses the tab, previous or next buttons on the device's keyboard, the FocusEvent
is not triggered.
I tried to catch Key events to prevent default action on TAB but the tab key is not triggerd either.
Does anyone know how to trigger a FocusEvent
on tab or previous/next key press on an Android device keyboard? (Everything works well in computer's browser even if using tab key the focus event is triggered but not in Android's browser).