On 29 oct, 15:50, ian12312 <[email protected]> wrote:
> I have added an MouseOverHandler to a Label, when the event is fired
> how can I change the cursor image to the hand?
You don't need any event for that; just declare a CSS rule such as:
.myLabel { cursor: hand; }
(or is it cursor:pointer?) and use addStyleName("myLabel") when
instantiating your Label:
Label label = new Label();
label.addStyleName("myLabel");
...
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---