gwt 中的列表框键盘操作
如何通过键盘获得列表框项目的焦点并通过按 Enter 键选择文本框中的项目
how to get focus on listbox items through keyboard and selected the item in textbox by pressing enter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过调用
setFocus(true)
来赋予ListBox
焦点。您提到的键盘/输入行为是自动提供的。You can give a
ListBox
focus by callingsetFocus(true)
on it. The keyboard/enter behavior you mention is provided automatically.