GWT: I am using jScrollPane with jquery, is it messing with my ClickHandlers?
问题 I implemented the JScrollPane for a cleaner look inside my Page. function scrollPane() { $(".gwt-content").jScrollPane(); } A custom Widget gets added: $(".jspPane").append($(new Content()); works $(html).click(new Function() { public boolean f(Event e) { System.out.println("yo"); return true; } }); doesn't html.addClickHandler(new ClickHandler() { @Override public void onClick(ClickEvent event) { System.out.println("yo1"); } }); html is a HTML Widget with some Text and another HTML widget in