You could also use an HTML element if you wanted and then add it to
whatever kind of panel you have.

SimplePanel sp = new SimplePanel();
HTML html = new HTML();
String myHtml = "<div>";
myHtml+ = "<div>Something</div>";
myHtml += "<div>Something2</div>";
myHtml += "</div>";
html.setHTML(myHtml);
sp.add(html);
--~--~---------~--~----~------------~-------~--~----~
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