Results 1 to 3 of 3
- 12-29-2012, 08:11 AM #1
Member
- Join Date
- Dec 2012
- Posts
- 1
- Rep Power
- 0
Velocity - Using Loops for Handling lists within variables
Hello All, I am having an issue with using loops on handling a results list if it has one or two results.
Here is what I am trying to accomplish.
If I have a results list variable with two results:
Supplemental
2nd of result list text
Result
1st of result list text.
==========================================
If I have a results list variable with one result
Result
1st of result list text
===============================================
Based upon the code I have listed below, this works successfully when I have a variable with two results. However, if I only have one result, the label supplemental will display and no results show. This makes sense as the if statement is looking for anything to where the resultslist variable is greater or equal to 2. The issue I am having is that I can't seem to get this to work per the result of variable with one result. I tried an elseif statement, but the results end up getting duplicated.
Java Code:<SPAN style="FONT-SIZE: 14pt">Supplemental</Span><BR> #set ($a = 0) #foreach ($results in $reportInfo.resultslist) #set ($a = $a + 1) #if ($a >= 2) <BR> <SPAN style="FONT-SIZE: 14pt">Result</Span> <BR> #end <BR> $resultslist <BR>Last edited by fl2297; 12-30-2012 at 01:04 AM.
- 12-29-2012, 09:46 AM #2
Re: Velocity - Using Loops for Handling lists within variables
Why do they call it rush hour when nothing moves? - Robin Williams
- 12-29-2012, 09:48 AM #3
Re: Velocity - Using Loops for Handling lists within variables
Why do they call it rush hour when nothing moves? - Robin Williams
Similar Threads
-
variables in loops
By mbw290 in forum New To JavaReplies: 11Last Post: 11-17-2012, 04:15 PM -
loops and exception handling
By George5432 in forum New To JavaReplies: 7Last Post: 05-06-2012, 03:46 AM -
Velocity + GWT SplitLayoutPanel
By SigmaSquared in forum Apache VelocityReplies: 0Last Post: 01-05-2012, 03:53 PM -
Strange Error Regarding Lists and Variables
By GuiRitter in forum New To JavaReplies: 6Last Post: 03-29-2011, 10:36 PM -
Velocity / XML response
By sabatier in forum XMLReplies: 0Last Post: 07-24-2007, 01:13 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks