2

我正在使用 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);

我的问题是:如何指定要在指定位置而不是其他位置呈现新行(在作曲家中以编程方式生成)?

也欢迎任何建议/指南。提前感谢您的回答。

4

1 回答 1

1

有两种方法可以在 DOM 中插入内容。
第一种方法是设置父母,第二种方法是添加一个孩子。

如果你检查AbstractComponentapi。你看他们也谈到appendChildinsertBefore(Component newChild, Component refChild)

所以代码看起来像:

rows.insertBefore(newRow,rowWhatComesAfterYourRow);
于 2018-03-14T06:57:17.997 回答