1

我必须在自定义组件上实现 com.google.gwt.event.dom.client.HasClickHandlers

class ItemTextBox extends Composite implements HasPasteEventHandler, TextArea {

所以我必须实施

@Override
    public HandlerRegistration addKeyDownHandler(final KeyDownHandler handler) {
        // return textAreaWidget.addKeyDownHandler(handler);

}

现在我已经用 Summernote https://github.com/gwtbootstrap3/gwtbootstrap3-extras替换了提供 addKeyDownHandler 的 textAreaWidget (参见 Summernote),它只提供 SummernoteKeyDownHandler

我该如何转换

4

0 回答 0