Re: DockLayoutPanel with global Scroll

2011-03-23 Thread Marco Gadaleta
Thx john..i think to follow your suggestion. On Tue, Mar 22, 2011 at 9:06 PM, John LaBanca jlaba...@google.com wrote: ResizeLayoutPanel ProvidesResize but does not RequireResize, so it allows you to embed layout panels within your app. However, I wouldn't recommend using too many of them as

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread Patrice De Saint Steban
Hello you can't use the DockLayoutPanel for do this, but you can use the LayoutPanel to add Layer, and attach Layer on the Top, left and Right to the screen and allow the size to be growing to the content. Patrice -- You received this message because you are subscribed to the Google Groups

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread Marco Gadaleta
thx ;-) On Tue, Mar 22, 2011 at 3:16 PM, Patrice De Saint Steban patou.de.saint.ste...@gmail.com wrote: Hello you can't use the DockLayoutPanel for do this, but you can use the LayoutPanel to add Layer, and attach Layer on the Top, left and Right to the screen and allow the size to be

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread Marco Gadaleta
But if i want to add a LayoutPanel i cant use RootPanel but I must use RootLayoutPanel.. Is it right? On Tue, Mar 22, 2011 at 3:36 PM, Marco Gadaleta gadaleta.ma...@gmail.comwrote: thx ;-) On Tue, Mar 22, 2011 at 3:16 PM, Patrice De Saint Steban patou.de.saint.ste...@gmail.com wrote:

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread redjhawk
On Mar 22, 8:59 am, Marco Gadaleta gadaleta.ma...@gmail.com wrote: Hello everyone, i'm trying to use a docklayoutpanel inside a scrollpanel, but if i do this gwt gets angry with me... Maybe you could insert a scrollpanel inside the docklayoutpanel, in the center. -- You received this

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread Jens
Yeah right. LayoutPanel and all other LayoutPanels should be in a LayoutPanel hierarchy starting with RootLayoutPanel. If you ever put a LayoutPanel in a normal panel I think you have to set width and height to 100%. -- You received this message because you are subscribed to the Google

Re: DockLayoutPanel with global Scroll

2011-03-22 Thread John LaBanca
ResizeLayoutPanel ProvidesResize but does not RequireResize, so it allows you to embed layout panels within your app. However, I wouldn't recommend using too many of them as it could affect the performance of your app. ResizeLayoutPanel is checked into trunk and will be included in GWT 2.3.