I have com.google.gwt.user.client.ui.HTML component which contains some anchors. When the component is clicked I need distinguish the clicks on anchors from the clicks on rest of the content of the component.
Example:
htmlText = new HTML();
htmlText.setHTML("foo <a href=http://stackoverflow.com target=_blank>stackoverflow</a> bar");
htmlText.addClickHandler(new ClickHandler() {
@Override
public void onClick(ClickEvent event) {
if (!anchorClicked(event)) doSomethingElse();
}
});
When the "stackoverflow" hyperlink is clicked, I want default behaviour - go to stackoverflow.com. When "foo" or "bar" is clicked, I want "doSomethingElse()" to be called. Is there anyway to achieve that? What should be in the anchorClicked(e) method?