Display *: Tag Library
Tag footer


Tag wich should be nested into a table tag to provide a custom table footer. The body of the tag is into the tfoot section of the table. The totals variable, if designated, will be in pageContext in this tag.

Example:
<display:table name="someList" varTotals="totals"> <display:column property="itemName"/> <display:column property="price" total="true"/> <display:footer> <tr> <td>Total Bill:</td> <td><c:out value="${totals.column2}" /></td> <tr> </display:footer> </display:table>


Tag Information
Tag Classorg.displaytag.tags.TableFooterTag
TagExtraInfo ClassNone
Body ContentJSP
Display Namefooter

Attributes
NameRequiredRequest-timeTypeDescription
mediafalsetruejava.lang.StringUse this attribute to keep a footer from being output during an export. The caption will only render for the named media type(s) - it won't be added to the table if the current request media is not supported. Can be any space separated combination of 'html', 'csv', 'xml', 'all', or 'excel'. Defaults to 'all'. See the export page in the example webapp for more details.

Variables
No Variables Defined.


Output Generated by Tag Library Documentation Generator. Java, JSP, and JavaServer Pages are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 2002-4 Sun Microsystems, Inc. 4150 Network Circle Santa Clara, CA 95054, U.S.A. All Rights Reserved.