convirgance
Tag for


Loops from begin (inclusive) to end (exclusive) incrementing by step.

Example:

<virge:for var="index" begin="0" end="4" step="2">
<div>${index+1}</div>
</virge:for>


Tag Information
Tag Classcom.invirgance.convirgance.web.tag.ForTag
TagExtraInfo ClassNone
Body Contentscriptless
Display NameNone

Attributes
NameRequiredRequest-timeTypeDescription
beginfalsetrueintThe value to start the loop with
endfalsetrueintEnd the loop when the index reaches this number
scopefalsefalsejava.lang.StringScope of the variable (i.e. page, request, session, or application)
stepfalsetrueintIncrement the index by this value each loop. Defaults to 1. Must be greater than 0.
vartruefalsejava.lang.StringVariable to assign the index of the for loop to

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.