Tag Summary |
forEachInArray |
Iterate over an array. The body of the tag is executed once for each
item in the array.
|
transposeArray |
Transpose a standard 2-dimensional [row][column] array to a [column][row] array.
|
counter |
Create a loop. The body of the tag is executed once for each value of the loop counter.
|
isNull |
Execute the body of the tag if a value is null.
In the case of a String, an empty string (zero length) will also be treated
as if it were "null".
A null Object or an empty string will cause the body to execute.
|
notNull |
Execute the body of the tag if a value is non-null.
In the case of a String, an empty string (zero length) will also be treated
as if it were "null".
A non-null Object or a non-empty string will cause the body to execute.
|
simpleReport |
Deprecated.
|
uriContent |
Pull content from a URL into a variable. It is best used for grabbing text-heavy pages.
|
date |
Get a formatted date-time String based on the user's time zone preference.
|
convertSpecialChars |
Convert characters which would normally signify special meaning
to an HTML browser into characters which can be displayed as intended.
The converted string is inlined to the JSP page.
|