"Fiddling with CFDOCUMENT continues. And I thought getting CSS to work cross
browser was hard enough J What rendering engine does cfdocument use
anyways?"

CFDocument uses iText.

"1.       Is it possible to output tabular data across multiple pages with
clean page breaks and table headers on each page?"

This is how I accomplished it:

<cfdocumentsection>
        
<!--- section header --->
<cfdocumentitem type="header">
   <cfinclude template="includes/workorder_header.cfm">
</cfdocumentitem> 
                        
<!--- section footer --->
<cfdocumentitem type="footer" evalatprint="true">
   <cfinclude template="includes/workorder_footer.cfm">
</cfdocumentitem>

<!--- tabular data --->
<cfinclude template="includes/workorder.cfm">  

</cfdocumentsection>


"2.       I'm using my own custom headers and footers instead of
cfdocumentitem. Is it possible to obtain page numbers outside of
cfdocumentitem?"

Why would you not use cfdocumentitem? I use custom headers/footers in the
example above and it works quite nicely...once I figured out the arcane way
that it operates.




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Want to reach the ColdFusion community with something they want? Let them know 
on the House of Fusion mailing lists
Archive: 
http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:325331
Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm
Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

Reply via email to