|
Returns program flow to the top of the
ExampleThis examples loops through the orders array. The <MvFOREACHCONTINUE> tag is used to skip processing if the fname field contains the string 'test order'. Example:
<MvFOREACH ITERATOR = "l.item" ARRAY = "l.orders" INDEX = "l.pos">
<MvCOMMENT> filter out any test orders </MvCOMMENT>
<MvIF EXPR="{ 'test order' IN l.item:fname }">
<MvFOREACHCONTINUE>
</MvIF>
... Process other items ...
</MvFOREACH>
|