get tag
Retrieves the content from a c:set or from placement in the rendering engine from the workflow engine.
Attribute |
Notes |
name
|
Required
|
into
|
|
test
|
|
Sample:
<c:if test="${action eq 'rock'}">
<c:set name="display" value="none"/>
</c:if>
<div style="display:${display}">
Here is some text
</div>
<c:set name="width" test="${showBig}" true="100px" false="50px"/>
<div style="width:${width}">
Here is some text
</div>
<c:set name="${id}var" value="Something here"/>
<c:get name="${id}var"/>
<c:get name="${id}var" into="other"/> ${other}