简体   繁体   English

GWT TextArea监听器

[英]GWT TextArea listener

I try to use gwt to create a textarea and a counter under it with the length of the characters, but it doesn't counts the backspace and with 1 character it has length 0. Here's my code. 我尝试使用gwt创建一个textarea和一个带有字符长度的计数器,但它不计算退格,并且1个字符的长度为0.这是我的代码。 What can be the problem? 可能是什么问题?

public class Test implements EntryPoint {

 TextArea textArea;
 Label  counter;

 public void onModuleLoad() {
  textArea = new TextArea();
  counter = new Label("Number of characters: 0");
  textArea.addKeyPressHandler(new KeyPressHandler() {
        public void onKeyPress(KeyPressEvent event) {
       counter.setText("Number of characters: " + textArea.getText().length());
   }
  });
  RootPanel.get("myContent").add(textArea);
  RootPanel.get("myContent").add(counter);
}

Perhaps you want to track KeyUp event instead: 也许您想要跟踪KeyUp事件:

textArea.addKeyUpHandler(new KeyUpHandler() {
    public void onKeyUp(KeyUpEvent event) {
        counter.setText("Number of characters: " + textArea.getText().length());
    }
});

I think checked this code should work 我认为检查此代码应该工作

public class TextAreaEx implements EntryPoint {
 final TextArea textArea = new TextArea();
 final Label counter = new Label("Number of characters: 0");

public void onModuleLoad() {
    RootPanel.get().add(textArea);
    RootPanel.get().add(counter);
    addlistener();
}

private void addlistener() {
       textArea.addKeyUpHandler(new KeyUpHandler() {
            public void onKeyUp(KeyUpEvent keyUpEvent) {
              counter.setText(" Number of characters:"+textArea.getText().length());
            }
        });
        textArea.addChangeHandler(new ChangeHandler() {
            public void onChange(ChangeEvent changeEvent) {
                counter.setText(" Number of characters:"+textArea.getText().length());
            }
        });
  }

} }

Sounds like you're counting characters before the key press event completes. 听起来像是在按键事件完成之前计算字符数。 Perhaps if you try a KeyUpHandler instead, then the text area will include the newly added character. 也许如果您尝试使用KeyUpHandler,则文本区域将包含新添加的字符。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM