| |||||||
FRAMES NO FRAMES |
<%@ taglib prefix="convirgance" uri="convirgance:web" %>
<anyxmlelement xmlns:convirgance="convirgance:web" />
Tag Library Information | |
Display Name | None |
Version | 2.0 |
Short Name | convirgance |
URI | convirgance:web |
Tag Summary | |
array | No Description |
if | Tests a value and includes the inner content only if the test is true |
iterate |
Loops through the supplied Iterable object
Example:
<virge:iterate var="customer" items="customers" status="loop">
|
json |
Converts a raw JSON string into a JSONObject |
key | No Description |
object | No Description |
parameter | No Description |
query |
Executes a database query and assigns the resulting Iterable<JSONObject>
to the specified variable. Bind variables will be pulled from the JSP
scope heirarchy unless a bind object is defined. If a bind object is
defined, bind variables will be pulled from that instead.
Example:
<virge:set var="zipcode" value="12345"/>
|
service | No Description |
set | Sets the given value to the specified variable in scope |
value | No Description |
Function Summary | ||
java.lang.Object | first( java.lang.Iterable) |
Returns the first item in the provided Iterable
|
java.lang.Object | last( java.lang.Iterable) |
Returns the last item in the provided Iterable
|
java.lang.String | json( java.lang.Object) | Formats the given object as valid JSON, properly escaping values to prevent injection attacks |
java.lang.String | javascript( java.lang.Object) | Formats the given object as valid Javascript, properly escaping values to prevent injection attacks |
java.lang.String | html( java.lang.Object) |
Formats the given object as valid HTML, properly escaping values to
prevent injection attacks. Converts the following characters into
HTML entities: & , < , > ,
" , '
|
java.lang.String | urlparam( java.lang.Object) | Formats the given object as an escaped url parameter string |
| |||||||
FRAMES NO FRAMES |