文本区域字符计数器

发布于 2024-10-21 13:00:37 字数 241 浏览 0 评论 0原文

如何制作标签来显示 TextArea 的字符数? 我有以下代码:

public void onChange(Field field, Object newVal, Object oldVal){
    counterLabel.setText(textArea.getValueAsString().length() + "/160");
}

问题是我必须单击标签才能更改字符数。
请帮忙

How do I make a label to show the charcount of a TextArea?
I have the following code:

public void onChange(Field field, Object newVal, Object oldVal){
    counterLabel.setText(textArea.getValueAsString().length() + "/160");
}

problem is I have to click the label for i to change the charcount.

help please

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

白芷 2024-10-28 13:00:37
textArea.addKeyPressListener(new EventCallback(){
        @Override
        public void execute(EventObject e) {
            // TODO Auto-generated method stub

        }
});

使用此 EventCallback 并在执行方法中只需使用您的方法 counterLabel.setText(textArea.getValueAsString().length() + "/160");

textArea.addKeyPressListener(new EventCallback(){
        @Override
        public void execute(EventObject e) {
            // TODO Auto-generated method stub

        }
});

Use this EventCallback and in the execute method just use your method counterLabel.setText(textArea.getValueAsString().length() + "/160");

婴鹅 2024-10-28 13:00:37

当用户按下按键时而不是文本区域更改时更改字符计数。

也许 addKeyboardListener 可以提供帮助。

Change the charcount when the users presses a key instead of when the textarea changes.

Maybe addKeyboardListener can help.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文