Hi, I have a DockLayoutPanel as the shell for my app. The ui.xml is like this:
<g:DockLayoutPanel unit='EM'> <g:north size='5'> <g:HTMLPanel styleName='{style.header}'> <div class="{style.logoHeader}"> <g:Image ui:field="logo" resource='{res.logoHeader}' /> </div> <div class="{style.userSession}"> <mb:UserSessionOptionsWidget ui:field="userSessionOptionsWidget" / > </div> </g:HTMLPanel> </g:north> <g:center> <b:ContentPanel ui:field="contentPanel"> <b:HomeView ui:field="homeView" /> <b:LoginView ui:field="loginView" /> <b:RegisterUserView ui:field="registerUserView" /> </b:ContentPanel> <!-- <g:SplitLayoutPanel> <g:west size='192'> <g:HTMLPanel> <div>Hello</div> </g:HTMLPanel> </g:west> <g:north size='200'> <g:HTMLPanel> <div>Hello 2</div> </g:HTMLPanel> </g:north> <g:center> <g:HTMLPanel> <div>He.lo</ div> </g:HTMLPanel> </g:center> </g:SplitLayoutPanel> --> </g:center> </g:DockLayoutPanel> However, the scroll bar never appears, even when the content does not fit the browser area. How to make the DockLayoutPanel scrollable? Not just the panels inside, but the whole DockLayoutPanel? Thank you -- 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.