GWT pasting event

2019-02-14 05:40发布

I want to handle events when user pastes some text in TextBox. Which event is fired in this situation? I tried ValueChange and Change handlers, but they didn't work.

2条回答
趁早两清
2楼-- · 2019-02-14 06:23

This might help you. Describes a workaround to hook to the onpaste event. In short:

  • subclass TextBox

  • sink the onpaste event in the constructor

    sinkEvents(Event.ONPASTE);
  • override onBrowserEvent(Event event)

    public void onBrowserEvent(Event event) {
        super.onBrowserEvent(event);
        switch (event.getTypeInt()) {
            case Event.ONPASTE: {
                // do something here
                break;
            }
        }
    }
查看更多
走好不送
3楼-- · 2019-02-14 06:24

GWT does not yet have support for cut, copy & paste: http://code.google.com/p/google-web-toolkit/issues/detail?id=4030

Edited: Another option is to use JSNI. For example add this to your GWT class:

public native void addCutHandler(Element element)
    /*-{
        var temp = this;  // hack to hold on to 'this' reference
        element.oncut = function(e) {
            temp.@org.package.YourClass::handleCut()();
        }
    }-*/;

public void handleCut() {
    Window.alert("Cut!");
}
查看更多
登录 后发表回答