I notice 2.0M2 deprecates addClickHandler() in HyperLink and suggest
user Anchor instead. But I can't see any benefits that we have two
totally separated widgets for same <a> tag. HyperLink has its
advantage, ie, mouse-right-click open window. However, sometimes,
Hyperlink also needs handle some mouse events.
For example, in my scenario, there is a hyperlink in a popup panel. I
want to hide this pop then load another history token, I use this
code:
Hyperlink tagCloud = new Hyperlink("view tag cloud", "tagcloudToken");
tagCloud.addClickHandler(new ClickHandler(){
public void onClick(ClickEvent event) {
TagPopup.this.hide();
}
});
In 2.0M2, whatever Hyperlink or Anchor, it can't fit the use. If I
use Hyperlink, I have to use a deprecated addClickHandler(). If use
Anchor, it becomes impossible to open window in mouse-right-click.
Any comments?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en
-~----------~----~----~----~------~----~------~--~---