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 -- View this message in context: http://www.nabble.com/How-to-loop-a-for-loop-in-velocity-with-counters-tp17618412p17618412.html Sent from the Velocity - User mailing list archive at Nabble.com. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
