vote up 3 vote down star

I've drawn a blank. Does GWT have a widget that produces the HTML P tag?

I want just the P tag to appear in the DOM, without any extraneous DIV's.

flag

43% accept rate

2 Answers

vote up 3 vote down check

GWT doesn't have such a widget. But you can easily create one. The SimplePanel has a protected constructor which allows it to create a panel with any HTML tag. To create a panel with the P tag, simply extend the SimplePanel and create it with your own constructor:

  public class PPanel extends SimplePanel {
    public PPanel() {
      super((Element) Document.get().createPElement().cast());
    }
  }
link|flag
Thanks for that answer Hilbrand. By making PPanel also implement HasText, I have the solution I was seeking. – David Oct 3 at 12:35
vote up 1 vote down

Have you tried HTMLPanel widget?

link|flag
I believe that HTMLPanel renders a DIV element, not a P element. – David Oct 3 at 1:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.