I have following code where I am adding the row to the group.
When I trying to fetch the rows by using grid.getRows.getChildren() is giving me the empty rows.
<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>
How we retrieve from the template.