hey there,
You can just add a css style to any panel. For instance, i used
firebug to change the style on the box above so that there is a
repeating background image of the google logo. The style looks like
this. Screenshot
http://drop.io/pytdu4r/asset/background-repeat
.cb {
background-image:url(
http://www.google.com/intl/en_ALL/images/
logo.gif);
}
In the gwt code, you would have something like this:
SimplePanel container;
container.setStyle("cb")
later,
bryan