not able get the rows in the grid zk java

253 Views Asked by At

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.

0

There are 0 best solutions below