触发 onFocus textBox Android gwt webapp PhoneGap 1.1
我正在 Android Galaxytab 上运行一个网络应用程序。 我有 3 个带有 FocusHandler
-s 的文本框,用于擦除文本框内容 onFocus
。 这效果很好,但如果用户使用设备键盘上的选项卡、上一个或下一个按钮,则不会触发 FocusEvent
。
我尝试捕获按键事件以防止 TAB 上的默认操作,但 Tab 键也没有被触发。
有谁知道如何在 Android 设备键盘上的选项卡或上一个/下一个按键上触发 FocusEvent
? (即使使用 Tab 键触发焦点事件,在计算机浏览器中一切正常,但在 Android 浏览器中则不然)。
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).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
虽然这不能解决您的
FocusHandler
问题,但如果要删除的文本框中的内容是占位符,也许您可以从 这个答案。While this isn't a fix for your
FocusHandler
issue, if the content in the textbox that is being erased is a placeholder, perhaps you can benefit from this answer.看一下 http://www.m-gwt.com
该库为输入元素提供了占位符重量。
Take a look at http://www.m-gwt.com
The library provides placeholders for input elements in gwt.