Re: How to draw horizontal line (equivalent HR tag) in GWT 2.3 ?

2014-12-24 Thread steven
This works for me:

panel.add(new HTML(hr /));


On Tuesday, June 3, 2014 2:32:50 PM UTC-4, cellepo wrote:

 I tried dominique calcinelli's suggestion but could not figure out how to 
 get around this error:
  Node cannot be inserted at the specified point in the hierarchy

 So I eneded up just making an hr/ with HTML Widget instead, per this 
 other related discussion:
 https://groups.google.com/forum/#!topic/Google-Web-Toolkit/NMjozOU4UXk


 On Friday, February 22, 2013 11:46:26 AM UTC-5, dominique calcinelli wrote:

 First create the HTML hr/ tag :

 InlineHTML hrTag = new 
 InlineHTML().wrap(Document.get().createHRElement());

 Then use it as follows :

 myPanel.add(hrTag);




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: How to draw horizontal line (equivalent HR tag) in GWT 2.3 ?

2014-06-04 Thread cellepo
I tried dominique calcinelli's suggestion but could not figure out how to 
get around this error:
 Node cannot be inserted at the specified point in the hierarchy

So I eneded up just making an hr/ with HTML Widget instead, per this 
other related discussion:
https://groups.google.com/forum/#!topic/Google-Web-Toolkit/NMjozOU4UXk


On Friday, February 22, 2013 11:46:26 AM UTC-5, dominique calcinelli wrote:

 First create the HTML hr/ tag :

 InlineHTML hrTag = new 
 InlineHTML().wrap(Document.get().createHRElement());

 Then use it as follows :

 myPanel.add(hrTag);




-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit.
For more options, visit https://groups.google.com/d/optout.


Re: How to draw horizontal line (equivalent HR tag) in GWT 2.3 ?

2013-02-23 Thread dominique calcinelli
First create the HTML hr/ tag :

InlineHTML hrTag = new 
InlineHTML().wrap(Document.get().createHRElement());

Then use it as follows :
   
myPanel.add(hrTag);


-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to google-web-toolkit+unsubscr...@googlegroups.com.
To post to this group, send email to google-web-toolkit@googlegroups.com.
Visit this group at http://groups.google.com/group/google-web-toolkit?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.




How to draw horizontal line (equivalent HR tag) in GWT 2.3 ?

2011-08-16 Thread BM
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 google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.



Re: How to draw horizontal line (equivalent HR tag) in GWT 2.3 ?

2011-08-16 Thread BM
You are awesome! Thank you very much!

On Aug 16, 11:17 am, Jens jens.nehlme...@gmail.com wrote:
 You can use g:HTMLPanel or g:HTML in your UiBinder xml and put the
 hr tag directly into it, e.g.:

 g:HTMLPanel
   h1Title/h1
   g:FlowPanel ui:field=container/
   hr style=width:100%; /
   g:FlowPanel ui:field=container/
 /g:HTMLPanel

 -- J.

-- 
You received this message because you are subscribed to the Google Groups 
Google Web Toolkit group.
To post to this group, send email to google-web-toolkit@googlegroups.com.
To unsubscribe from this group, send email to 
google-web-toolkit+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-web-toolkit?hl=en.