0

アプリケーションで単純なstacklayoutPanelを使用しましたが、高さを100%にすることはできません。高さを修正することしかできません。

幅で行っているように、「300px」の代わりに高さを100%にする方法はありますか

<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>
4

1 に答える 1

0

If you use any of layout panels, you should use only layout panels throughout the hierarchy if you are setting the width and height in percentages starting from RootLayouPanel. Then automatically your stacklayoupanel height will be 100% provided you set the height to be 100%. For simillar issues, refer the following links

GWT Re-sizing components on browser window resize

GWT: DataGrid - set height 100% not rendering properly

于 2013-01-18T15:02:01.480 に答える