Adding ClickHandler to div which contains many other widget

后端 未结 3 1015
我寻月下人不归
我寻月下人不归 2020-12-14 22:25

It seems that Panel doesn\'t inherit from HasClickHandlers and I can\'t add a clickHandler to DivElement. Is there any way to add the clickHandler to a DIV?

EDIT:

3条回答
  •  长情又很酷
    2020-12-14 23:10

    public class ClickableDiv extends FlowPanel implements HasClickHandlers {
        @Override
        public HandlerRegistration addClickHandler(ClickHandler handler) {
            return addDomHandler(handler, ClickEvent.getType());
        }
    }
    

    That should be all you need. addDomHandler will take care of "sinking" the event type for you.

提交回复
热议问题