forEachStatus

From Documentation
Revision as of 01:32, 8 July 2010 by Maya001122 (talk | contribs) (Created page with '== forEachStatus – org.zkoss.zk.ui.util.ForEachStatus == The status of an iteration. ZK exposes the information relative to the iteration taking place when evaluating the itera…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

forEachStatus – org.zkoss.zk.ui.util.ForEachStatus

The status of an iteration. ZK exposes the information relative to the iteration taking place when evaluating the iterative element.

 <zk>
   <zscript>
 grades = new String[] {"Best", "Better", "Good"};
   </zscript>
   <listbox width="100px">
     <listitem label="${forEachStatus.index}: ${each}" forEach="${grades}"/>
   </listbox>
 </zk>

Note: forEachStatus.index is absolute with respect to the underlying collection, array or other type. For example, if forEachBegin is 5, then the first value of forEachStatus.index with be 5.