文本区域字符计数器
如何制作标签来显示 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用此 EventCallback 并在执行方法中只需使用您的方法
counterLabel.setText(textArea.getValueAsString().length() + "/160");
Use this EventCallback and in the execute method just use your method
counterLabel.setText(textArea.getValueAsString().length() + "/160");
当用户按下按键时而不是文本区域更改时更改字符计数。
也许 addKeyboardListener 可以提供帮助。
Change the charcount when the users presses a key instead of when the textarea changes.
Maybe addKeyboardListener can help.