Is there a way to display HTML in a GWT Panel?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Short Answer: You can add HTML to a GWT Panel by creating an HTML widget and attaching that widget to your panel. For example...
Long Answer: There are a variety of ways that you can add HTML to a GWT Panel. You should start by reading the Developer's Guide for GWT. Specifically, you should read the portions on Layout Using Panels and Widgets. |
|||
|
|
Also, the new declarative UI stuff in GWT 2.0 saves you from having to embed HTML into your Java.
|
|||
|
|
|
Ahhh. I was thinking about it differently. It's the widget I'm putting into the panel that needs to be formatted. Therefore if I do a
then add it to a panel it'll work :) |
|||
|
|
you can add this HTML widget to any panel with " |
|||
|
|