Logged In: NO

Here's an example of a list of results with a hyperlinked value
in each row and an image displayed in one field too in case
you need it.

<table:table id="guiContainersSimpleFunctional"
name="containerList">
<logic:iterate id="element" name="containerList">
<table:define id="barcode">
<html:link page="/loadContainer.do?action=Edit"
paramId="containerId"
paramName="element"
paramProperty="containerId">
<bean:write name="element" property="newBarcodes"/>
</html:link>
</table:define>
<bean:define id="keyword" name="element"
property="keywordName"/>
<bean:define id="amt" name="element"
property="currentAmt"/>
<bean:define id="amtUOM" name="element"
property="currentAmtUOM"/>
<bean:define id="format" name="element"
property="containerFormat"/>
<bean:define id="location" name="element"
property="storageLoc"/>
<bean:define id="well" name="element"
property="wellID"/>
<bean:define id="created" name="element"
property="containerCreatedBy"/>
<bean:define id="createdDate" name="element"
property="containerCreatedDate"/>
<bean:define id="expirationDate" name="element"
property="expirationDate"/>
<logic:equal name="element" property="disposed"
value="true">
<table:define id="disposed">
<div align="center">
<html:img border="0" page="/Images/checkmark.gif"
width="12" height="12"/>
</div>
</table:define>
</logic:equal>
<table:tr/>
</logic:iterate>
</table:table>