Hi

Use <div style='background: url("image.png");"> GWT can help you
writing this code. 
http://code.google.com/webtoolkit/doc/latest/DevGuideClientBundle.html#Image_Sprites

Other option is to try to prevent the browser for taking the default
action. (I did not try myself)

image.addClickHandler(new ClickHandler() {
        public void onClick(ClickEvent event) {
                event.preventDefault();
        }
});

Regards
-Fran

On Jun 4, 10:51 am, "Erik M." <[email protected]> wrote:
> Hi,
>
> I've got several Image Widgets on my Site. Is there a way to prevent
> the selection with the mouse? Selection of an image means its getting
> a blue background and being draggable to other windows.
> Can you think of an HTML or GWT solution?
>
> I read that one option was to add an mouseMove event handler and let
> it "return false;". This was a pure JavaScript solution, not related
> to GWT.
>
> Sincerely,
> Erik

-- 
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.

Reply via email to