<zk>
<zscript><![CDATA[
Object[] o = new Object[50];
]]></zscript>
<window border="normal" title="" height="500px">
<grid id="grid1" height="40%">
<columns>
<column label="Grid with height=40% no scroll bar" sort="auto(name)" />
</columns>
<rows>
<row forEach="${o}">item ${forEachStatus.index}</row>
</rows>
</grid>
<space spacing="15px"/>
<grid id="grid2" height="200px">
<columns>
<column label="Grid with height=200px has scroll bar" sort="auto(name)" />
</columns>
<rows>
<row forEach="${o}">item ${forEachStatus.index}</row>
</rows>
</grid>
</window>
</zk>