如何使GWT StackLayoutPanel高度设置为100%

时间:2013-01-18 11:06:52

标签: gwt

我在我的应用程序中使用了一个简单的stacklayoutPanel,但是我无法将其高度设置为100%,我只能修复它我不想要的高度

有没有什么方法可以让它高度为100%的“300px”,因为我正在做宽度

<ui:style>
    .important {
    font-weight: bold;
    }
</ui:style>

<g:HTMLPanel ui:field="stack">
<g:StackLayoutPanel unit="PX" width="100%" height="300px" >

<g:stack>
    <g:header size="30">IntraVUE</g:header>
    <g:HTMLPanel ui:field="intraVues"></g:HTMLPanel>
</g:stack>

1 个答案:

答案 0 :(得分:0)

如果使用任何布局面板,如果要从 RootLayouPanel 开始以百分比设置宽度和高度,则应仅在整个层次结构中使用布局面板。如果您将高度设置为100%,则自动将您的stacklayoupanel高度设置为100%。有关simillar问题,请参阅以下链接

GWT Re-sizing components on browser window resize

GWT: DataGrid - set height 100% not rendering properly