tableFooterコンポーネントは、tableコンポーネントが作成した表のfooterの子としてのみ使用されます。エージェントのタイプがpda、phoneおよびvoiceの場合にはサポートされません。
tableFooterには索引付けされた任意の子を追加できますが、totalRowおよびaddTableRowのいずれか(または両方)のコンポーネントを挿入する場合には、通常tableFooterが使用されます。
tableFooterの名前付きの子totalは、表のフッターにtotalRowコンポーネントを挿入する場合にのみ使用されます。
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>
...
addTableRowについて
totalRowについて
tableおよびcolumnのfooterについて
tableFooter、addTableRowおよびtotalRowの使用
tableコンポーネントの使用
Copyright © 1997, 2004, Oracle. All rights reserved.