GWT 视图随着浏览器大小的调整而缩小
我将 GWT 与 GWT-Ext 一起使用。 我设计了一个带有表格和几个按钮的简单面板。 在浏览器中一切看起来都很完美。 当我缩小浏览器的大小时,我的整个视图也会缩小,而浏览器应该显示垂直和水平滚动条。 我可以在这里做些什么或者这种行为是预期的吗?
I am using GWT with GWT-Ext. I designed a simple panel with table and few buttons. In the browser all looks perfect. When I shrink the size of the browser my whole view also shrinks instead browser should show the vertical and horizontal scrollbars. Is there anything I can do here or this behavior is expected?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
此行为取决于您的布局,最终只是 HTML。
如果您使用的是 FlowPanel,那么内容的大小将被调整。 HorizontalPanel 的作用相同。 另一方面,AbsolutePanel应该为您提供几乎静态的定位。
This behaviour is dependent on your layout, which is just HTML in the end.
If you're using e.g. FlowPanel then the content will be resized. HorizontalPanel acts the same. On the other hand AbsolutePanel should give you pretty much static positioning.
即使您指定了 SimplePanel 使用 setWidth(String width) 方法?
Does this happen even if you specify a width for your SimplePanel using the setWidth(String width) method?