JSP CUSTOM TAG LIBRARIES


Examples: ifcategoryentry tag
For a view named "Customers," which contains company names in its first categorized column, contact names in column 2, and addresses for those contacts in column 3, the following code displays a table containing a list of company names in a large, bold font, then lists the contacts and addresses associated with each company with a standard font in the subsequent table rows:

<domino:view dbname="Fans.nsf" viewname="Customers">
<table>
 <domino:viewloop>
   <tr>
   <td><domino:ifcategoryentry>
   <h2><domino:viewitem col="1"/></h2>
   </domino:ifcategoryentry></td>
   <td><domino:viewitem col="2" /></td>
   <td><domino:viewitem col="3" /></td>
   </tr>
   </domino:viewloop>
</table>
</domino:view>

See Also