Re: How to style HorizontalPanel

2010-03-06 Thread Chris Lercher
Hi, I don't immediately know a solution, just an explanation: I added cellspacing=0 and cellpadding=0 to your pure HTML layout's table element, and I get the same effect. The problem is, that the text input element gets a width of 100% + 3 pixels border (+ maybe additionally some padding). This

Re: How to style HorizontalPanel

2010-03-06 Thread ailinykh
Thank you, Chris! It makes sense. Honestly, I don't see any reason to use Gwt panels in UiBinder xml file. I put there regular html, added some padding to td. Now everything looks good. By the way, what is stylePrimaryName how it differs from styleName? Andrey -- You received this message

Re: How to style HorizontalPanel

2010-03-06 Thread Chris Lercher
On Mar 6, 6:07 pm, ailinykh ailin...@gmail.com wrote: Thank you, Chris! It makes sense. Honestly, I don't see any reason to use Gwt panels in UiBinder xml file. I put there regular html, added some padding to td. Now everything looks good. Oh yeah, that works, too :-) By the way, what is

How to style HorizontalPanel

2010-03-05 Thread ailinykh
Hello, everybody! I've problem with HorizontalPanel layout. What I have is: g:HorizontalPanel width=100% g:cell width=100% g:TextBox width=100% ui:field=inviteEmail/ /g:cell g:cell g:Button ui:field=inviteButton text=Invite/ /g:cell