GWT 按键过滤器
如何创建只强制在文本字段中输入数字的 KeyPress 过滤器。这里是这样的:
http://www.smartclient.com/smartgwt/showcase/#form_keypress_filter
添加麻烦了,有没有办法在 uiBinder xml 文件中执行此操作?
How do you go about creating KeyPress filter that would enforce only digits as input in text field. Something like this here:
http://www.smartclient.com/smartgwt/showcase/#form_keypress_filter
As added anoyence is there a way of doing this in uiBinder xml file?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
此处描述了执行此操作的代码。
在您的 uiBinder 文件中,定义您的 TextBox 项目。
在您的类中,您可以直接添加 KeyPressHandler,例如:
或者您可以使用 @UiHandler 注释,如下所示:
The code to do that is described here.
In your uiBinder file, define your TextBox item.
In your class, you can either add the KeyPressHandler directly, like :
Or you can use the @UiHandler annotation like so: