>>>>> "Alejandra" == Alejandra De Leon <[EMAIL PROTECTED]> writes:

    Alejandra> I'm having a problem with foreach tag using begin and end attributes.
    Alejandra> The code I have is:
    Alejandra> <c:forEach begin="${erliestYear}" end="${latestYear}" 
varStatus="status">
    Alejandra>          <option value="<c:out value='${status.index}'/>"<c:if
    Alejandra> test="${status.index == statisticsForm.toYear}"><c:out value="
    Alejandra> selected"/></c:if>><c:out value='${status.index}'/></option>
    Alejandra> </c:forEach>

    Alejandra> and when earliestYear it's equals to lastYear It doesn't display the 
option
    Alejandra> tag.
    Alejandra> I suppose that it should be like in Java that runs the loop once.

    Alejandra> This is a bug or it's not possible to use a <foreach> only to run once.

Just make "end" equal to "${latestYear + 1}".

-- 
===================================================================
David M. Karr          ; Java/J2EE/XML/Unix/C++
[EMAIL PROTECTED]   ; SCJP; SCWCD




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

Reply via email to