About TableFooter and Total

The tableFooter component is used only as a footer child in a table created by the table component. It is not supported on the following agent types: pda, phone, voice.

Any indexed child can be added to tableFooter, but you would normally use the tableFooter child to insert a totalRow or addTableRow component, or both.

Table footer with addTableRow amd totalRow

The total named child of tableFooter is used only to insert a totalRow component in the table footer.


Example:

...
<table id="tb1" ... >
  <contents>
    ...
  </contents>
  <!-- footer child of table contains tableFooter. -->
  <footer>
    <tableFooter>
      <contents>
        <messageChoice prompt="Row Type">
          <contents>
            <option text="option 1"/>
            <option text="option 2"/>
          </contents>
          <end>
            <addTableRow/>
          </end>
        </messageChoice>
      </contents>
      <!-- total named child of tableFooter contains totalRow -->
      <total>
        <totalRow/>
      </total>
    </tableFooter>
  </footer>
  ...
</table>
...    

About AddTableRow
About TotalRow
About Footer in Table and Column

Using TableFooter, AddTableRow, and TotalRow
Working with Table Components

 

Copyright © 1997, 2004, Oracle. All rights reserved.