I have a SimplePanel I use as a "glass panel" over other widgets. When I don't set the backgroundColor mouse down events on the panel transfer through to the Widget underneath it. However, if I add a colored background the mouse down events get consumed and the Widget underneath does not receive it.
How can I work around this? I need a colored semi-transparent SimplePanel that allows mouseEvents to go through it as if it were invisible to them. Thanks, DOM.setStyleAttribute(getElement(),"backgroundColor", "yellow"); DOM.setStyleAttribute(getElement(), "border", "1px solid black"); DOM.setStyleAttribute(getElement(), "opacity", ".4"); DOM.setStyleAttribute(getElement(), "filter", "alpha(opacity=40)"); -- 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.
