I want to have equivalent <HR> HTML tag in resulting HTML using GWT.
Basically to draw a horizontal line.
How do I do that?
The one way I did using UIBinder was:
<g:HorizontalPanel styleName="{style.demo-hr}" height="0px"
width="100%">
</g:HorizontalPanel>
where:
<ui:style>
.demo-hr {
border: 1px solid #9A9A9A;
}
</ui:style>
Using firebug the resultant HTML is actually a table with 0px height
and not a <HR> tag. Is there any better way to achieve this?
Please advise.
--
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.