GWT 按键过滤器

发布于 2024-11-14 03:39:08 字数 257 浏览 2 评论 0原文

如何创建只强制在文本字段中输入数字的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下客 2024-11-21 03:39:08

此处描述了执行此操作的代码。

在您的 uiBinder 文件中,定义您的 TextBox 项目。

<g:TextBox uifield='textBox'/>

在您的类中,您可以直接添加 KeyPressHandler,例如:

textBox.addKeyPressHandler(new KeyPressHandler() {

        @Override
        public void onKeyPress(KeyPressEvent event) {
            if (!"0123456789".contains(String.valueOf(event.getCharCode()))) {
                textBox.cancelKey();
            }
        }

    });

或者您可以使用 @UiHandler 注释,如下所示:

@UiHandler("testBox")
public void onKeyPress(KeyPressEvent event) {
    if (!"0123456789".contains(String.valueOf(event.getCharCode()))) {
        textBox.cancelKey();
    }
}

The code to do that is described here.

In your uiBinder file, define your TextBox item.

<g:TextBox uifield='textBox'/>

In your class, you can either add the KeyPressHandler directly, like :

textBox.addKeyPressHandler(new KeyPressHandler() {

        @Override
        public void onKeyPress(KeyPressEvent event) {
            if (!"0123456789".contains(String.valueOf(event.getCharCode()))) {
                textBox.cancelKey();
            }
        }

    });

Or you can use the @UiHandler annotation like so:

@UiHandler("testBox")
public void onKeyPress(KeyPressEvent event) {
    if (!"0123456789".contains(String.valueOf(event.getCharCode()))) {
        textBox.cancelKey();
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文