I've been trying to design a report to be used with the desktop program on Windows 10. I know HTML, but I'm obviously missing a few pieces of reports.
Digging around you web site, I found a sample database called "Contact Report" that has a report. This report used the <header> tag to indicate that the enclose html is to be emitted only once at the start of the report. I cannot find any reference to this tag on your web site or in a documentation I have.
Logically, there should be a matching tag to indicate that the include html is emitted only once after all database records have been processed. What is it? I tried <footer> but that didn't work.
I'm trying to make my entire report an html table. My report definition looks like this:
<header>
<table>
<thead>
<tr>
<th>xxx</th>
<th>yyy</th>
</tr>
</thead>
</header>
<tr>
<td><fieldxxx></tr>
<td><fieldyyy></tr>
</tr>
</table>
This follows the structure in your example. Of course, what happens is that the report
- emits the <header> once,
- emits the <tr> with the data fields for the first record,
- emits the </table>,
- emits the <tr> for the second record. But this is no longer within the table.
So how do I get the </table> to emitted only once after all the records? And by what magic does the sample Contact report not have this problem?
Thanks
