I'm new to XSLT and trying to use it generate HTML that will eventually be printed.
I have my XML
<Items>
<Item>
<Value>10</Value>
<Description>ABC</Description>
</Item>
<Item>
<Value>20</Value>
<Description>DEF</Description>
</Item>
<Item>
<Value>30</Value>
<Description>GHI</Description>
</Item>
</Items>
That's just a sample but the XML could be much bigger.
My XSLT looks like this
<xsl:for-each select="ArrayOfItems/Item">
<tr>
<td>
<xsl:value-of select="Value"/>
</td>
<td>
<xsl:value-of select="Description"/>
</td>
</tr>
</xsl:for-each>
It's possible that the XML data could be so large that it flows to another page when printed.
Is there a way I can figure out if the current item to be generated in the HTML table will be the last to fit on the base so instead I can output a line that says "Continued on the next page"?