GWT:保持 SplitLayoutPanel 的最小尺寸
我正在开发一个 GWT 项目,并且正在使用 SplitLayoutPanel。我的页面分为几个可以调整大小的面板。我的问题来自于我无法指定面板的最小高度。
例如,如果我的面板高度为 300px,用户可以将其放大到 500px,但不能更多,并且不能将其缩小到 300px 以下。
我正在使用 uibinder。
编辑:我想做这种事情: http://www.ann0yanc3.com /Ext.layout.HBoxFitSplit/
这是给出代码的链接:http://www.sencha.com/forum/archive/index.php /t-65982.html
如果有人有更简单的解决方案,欢迎他!
谢谢塞布
I'm working on a GWT project and I'm using the SplitLayoutPanel. My page is divided in several panels that I can resize. My problem comes from the fact I can't specify a minimum height for my panels.
By example, if my panel is 300px height, user can enlarge it until 500px but not more and can not reduce it under 300px.
I'm using the uibinder.
Edit : I'd like to do this kind of thing : http://www.ann0yanc3.com/Ext.layout.HBoxFitSplit/
Here's a link where the code's given : http://www.sencha.com/forum/archive/index.php/t-65982.html
If somebody has an easier solution, he's the welcome !
Thanks
Seb
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在SplitLayoutPanel上,有这样的方法:
在您的视图中,您可以使用@UiField来访问您的SplitLayoutPanel和子级,然后您可以调用上面的方法。
On the SplitLayoutPanel, there is this method :
In you view, you can use @UiField to have access to your SplitLayoutPanel and childs, then you can call the method above.