如何监听GWT表中的键盘事件?
在我的 GWT 程序中,我有一个包含选定行的表。我想用键盘上的向上和向下键移动行选择。所以我必须以某种方式捕捉关键事件。
GWT 文档仅处理输入字段中的按键事件。但我没有输入字段!
这有可能吗?也许这是 GWT 无法解决的 DOM/Javascript 限制......
In my GWT program I have a table that has a selected row. I'd like to move the row selection with the up- and down-keys on the keyboard. So I have to catch the key events somehow.
The GWT docs handle key events in input fields only. But I don't have an input field!
Is this possible at all? Maybe it is a DOM/Javascript restriction that GWT cannot work around...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它通过使用 Event.addNativePreviewHandler(NativePreviewHandler handler) 来工作,
但有一些事情需要考虑:
要解决第二个问题,您可以使用以下代码获取浏览器的名称:
It works by using
Event.addNativePreviewHandler(NativePreviewHandler handler)
But there are some things to consider:
To work around the second issue you can get the name of the browser using this code: