如何使Tablelayout中的Panel在最大化时填充整个布局?

时间:2013-04-24 09:26:11

标签: zk

Panel默认情况下,Portallayout可以最大化为Portalchildren或布局。

如何才能使Panel中的Tablelayout最大化到布局?

1 个答案:

答案 0 :(得分:-1)

它对我有用。

<portallayout id="myptl" maximizedMode="whole">
            <portalchildren style="padding: 5px" width="450px" id="column1">
                <panel height="400px" title="Pie Chart Demo" border="normal"
                    collapsible="true" maximizable="true" style="margin-bottom:10px">
                    <panelchildren>
                        <iframe width="100%" height="100%"
                            src="/monitors/pie_chart_demo.zul" />
                    </panelchildren>
                </panel>
            </portalchildren>
    </portallayout>