setAutoHeight() gxt
我正在 gxt 中创建一个带有 BorderLayouts 的 ContentPanel。 需要设置面板的自动宽度和高度。 setAutowidth() 可以正常工作,但 setAutoHeight() 不能正常工作。
那么,我应该实施什么来使我的 ContentPanel 自动高度化?
I am creating a ContentPanel with BorderLayouts in gxt.
Need to set auto width and height for panel. setAutowidth() works properly but setAutoHeight() doesn't.
So, what should I implement to make my ContentPanel autoHeighed?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以使用这个
容器.setHeight(“自动”);
这对我有用。
还有另一种选择。您也可以尝试这个
container.setStyleAttribute("height","auto !important");
container.setStyleAttribute("溢出","可见!重要");
You can use this
container.setHeight("auto");
It worked for me.
There is another option. You can also try this
container.setStyleAttribute("height","auto !important");
container.setStyleAttribute("overflow","visible !important");