不断增长的 GWT Widget
我需要创建一个 GWT 自定义小部件。该小部件将包含一个面板,并且该小部件的高度必须根据面板中的文本量
编辑:
例如,假设一个小部件将包含论坛帖子。所发生的情况是,小部件内有一个面板用于保存论坛帖子。文字文字越多,面板就越大??
有什么想法吗?
I need to create a GWT Custom Widget. This widget will contain a panel and that widget must grow in height based on the amount of text in the panel
Edit:
for e.g. let's say a widget will hold a forum post. What happens is that there is a panel inside the widget that hold the forum post. The more text text, the greater the panel??
Any idea??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您将
Label
放入FlowPanel
中,整个面板将自行调整大小以包含您放入Label
中的任何文本。只要您不设置明确的大小,大多数 GWT 小部件都会执行此操作。一旦您开始自己设置尺寸(例如“高度:100px”),那么您就必须开始自己重新计算尺寸。所以...不要自己设置尺寸! :)
If you put a
Label
in aFlowPanel
, the whole thing will size itself to contain whatever text you put in theLabel
. Most GWT widgets will do that as long as you don't set an explicit size.Once you start setting the size (e.g. "height: 100px") yourself, then you have to start re-calculating the size yourself. So... don't set the size yourself! :)