我有以下代码,我将行添加到组中。
当我尝试使用 grid.getRows.getChildren() 获取行时,给了我空行。
<template name="model">
<zk if="${forEachStatus.index == 0}">
<group label="refund" />
</zk>
<row if ="${forEachStatus.index != 0}">
<cell>
<inbox value="${forEachStatus.index}" />
</cell>
<cell>
<input value="${each}" />
</cell>
</row>
我们如何从模板中检索。