我正在使用 ZK 应用程序,我需要<row>
根据用户输入添加 's 组件。zul是这样的:
<grid id="mygrid">
<rows id="rows">
<row>
<cell>
<label value="Rows to add 1:"/>
</cell>
<cell>
<textbox id="txt_addRows1"/>
</cell>
</row>
<!-- Here I need to add rows specified in txt_addRows1 -->
<row>
<cell>
<label value="Rows to add 2:"/>
</cell>
<cell>
<textbox id="txt_addRows2"/>
</cell>
</row>
<!-- Here I need to add rows specified in txt_addRows2 -->
<row align="right">
<cell colspan="2">
<button id="btn_generate" label="Generate"/>
</cell>
</row>
</rows>
</grid>
在作曲家中,我可以执行以下操作:
Row someRow = new Row();
row.setParent(rows);
我的问题是:如何指定要在指定位置而不是其他位置呈现新行(在作曲家中以编程方式生成)?
也欢迎任何建议/指南。提前感谢您的回答。