Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Hi everyone. Why Hyperlink.addClickHandler() is deprecated? I can't see a reason. How am I supposed to handle the onClick event of a Hyperlink? Thanks, Cristian. -- You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group,

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Paul Robinson
As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: Hi everyone. Why Hyperlink.addClickHandler() is deprecated? I

Re: Curiosity about GWT 2.0 - related to ClickHandler

2010-01-22 Thread Cristian Nicanor Babula
Ok. Thanks. On 01/22/2010 05:38 PM, Paul Robinson wrote: As the javadoc for Hyperlink.addClickHandler() says, you should use an Anchor instead of Hyperlink if you want to add a handler. Hyperlinks are intended as history event inducing widgets only. Paul Cristian Nicanor Babula wrote: Hi