Re: Drawing seperator (Line) between widgets

2008-12-16 Thread Alejandro D. Garin
Try usíng a CaptionPanel On 12/15/08, Arul arulmanikandan.sriniva...@gmail.com wrote: Hi, I tried but no solution found. Here I need to group elements after that I need to draw line between different groups. I believe there must be easy way to do that. It would be nice if anyone send

Re: Drawing seperator (Line) between widgets

2008-12-16 Thread Arul
Hi Rakesh, Your idea of adding hr element using new HTML() worked. Thanks Arul --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google Web Toolkit group. To post to this group, send email to

Re: Drawing seperator (Line) between widgets

2008-12-15 Thread Isaac Truett
You could use a border, an image (preferably a small repeating one), a div with a background color, or any other technique you would normally employ in HTML. On Mon, Dec 15, 2008 at 7:02 AM, Arul arulmanikandan.sriniva...@gmail.com wrote: Hi, Would you please help me How I can draw

Drawing seperator (Line) between widgets

2008-12-15 Thread Arul
Hi, Would you please help me How I can draw line(Horizontal or Vertical) between widgets?. I understand it is web tool kit, but supposed to give importance to this areas as well. The core idea is to replace presentation layer. Pease reply with out re-directing to some where. Thanks Arul

Re: Drawing seperator (Line) between widgets

2008-12-15 Thread Arul
Hi, I tried but no solution found. Here I need to group elements after that I need to draw line between different groups. I believe there must be easy way to do that. It would be nice if anyone send the code in GWT. what surprising is none of the examples not shown these kind of things.

Re: Drawing seperator (Line) between widgets

2008-12-15 Thread Kevin Tarn
You can try below example: VerticalPanel vp = new VerticalPanel(); vp.setStyleName(Seperator); Tool.add(vp); // Tool is your holder of group elements In your css, please add: .Seperator { /* 1px width, solid silver color separator */ background: 1px solid silver; width: 1px;

Re: Drawing seperator (Line) between widgets

2008-12-15 Thread rakesh wagh
Horizontal: new HTML(hr/); Vertical: new HTML( table style='display:inline;border- collapse:collapse;border:0'trtd style='padding:0'img src='transparent.gif' width='2' height='600' style='background:black'/td/tr/table); On Dec 15, 6:02 am, Arul arulmanikandan.sriniva...@gmail.com wrote: Hi,