Hi, you should be able to do:

#foreach( $code in $methodList)
  $code.method: $paymentList.get($velocityCount)
#end

Cheers,
Chirstoph

newbie-gero wrote:
Greetings, i like to loop 2 for loops to display out the data.

For example in methodList, it contains element 0 : register mail element 1 : Normal mail

In paymentList, it contains
element 0: $5
element 1: $2


Currently this is what i have code in velocity:

#foreach( $code in $methodList)  $code.method :#foreach( $charge in
$paymentList) $charge.delivery_charge #end #end
The results display are
REGISTER_MAIL : S$5.00 S$1.00 NORMAL_MAIL : S$5.00 S$1.00
Actually i want it to display as
REGISTER_MAIL : S$5.00
NORMAL_MAIL : S$1.00
How do i do it in velocity?

Thanks in advance



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to