But, the <c:out> tag doesn't display anything, do I need a TableDecorator or something to use varTotals="totals" and <c:out value="${totals.column2}" />?.
If you would like to refer to this comment somewhere else in this project, copy and paste the following link:
Hi, I'm following the <display:footer> example like this:
<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>
But, the <c:out> tag doesn't display anything, do I need a TableDecorator or something to use varTotals="totals" and <c:out value="${totals.column2}" />?.