I encounter this problem as well. Has anyone found a solution?
Thank
On Sep 25, 8:28 pm, Jean-Lou Dupont <[EMAIL PROTECTED]> wrote:
> Hi,
>
> I've got the following custom widget:
>
> <code>
> public class GearsStatus extendsAnchor{
>
> Image img = null;
>
> public GearsStatus() {
> super();
>
> final WidgetMessages MSG = (WidgetMessages)
> GWT.create(WidgetMessages.class);
>
> WidgetImageBundle bundle = (WidgetImageBundle)
> GWT.create( WidgetImageBundle.class );
>
> AbstractImagePrototype p = null;
>
> if (isGearsInstalled()) {
> p = bundle.gears();
> this.setHref(MSG.gears_href_installed());
> this.setTitle(MSG.gears_title_installed());
>
> } else {
> p = bundle.gears_grey();
> this.setHref(MSG.gears_href_not_installed());
> this.setTitle(MSG.gears_title_not_installed());
> }
>
> img = p.createImage();
>
> this.getElement().appendChild(img.getElement());
> }
> </code>
>
> which works fine on Chrome, FF, Safari but the <a><img> can not be
> clicked on IE6.
>
> Any hint?
>
> Thanks!
--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---