Details
Assignee
Michael OffnerMichael OffnerReporter
Brad WoodBrad WoodNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
New
Details
Details
Assignee
Michael Offner
Michael OffnerReporter
Brad Wood
Brad WoodNew Issue warning screen
Before you create a new Issue, please post to the mailing list first https://dev.lucee.org
Once the issue has been verified, one of the Lucee team will ask you to file an issue
Priority
Created 26 August 2021 at 21:51
Updated 14 September 2021 at 16:40
The following CFDocument code blow renders the headers and footers in the correct place of the page in Adobe ColdFusion. But in Lucee Server, it sticks them up at the top of each page. Removing the <html> tags will fix the layout, but this has become an issue for an application I'm converting that needs to still run on Adobe ColdFusion in the mean time.
<cfdocument format="PDF"> <cfoutput> <cfloop from="1" to="3" index="i"> <cfdocumentsection> <cfdocumentitem type="header"> <html> Header </html> </cfdocumentitem> <html> page content </html> <cfdocumentitem type="footer"> <html> Footer </html> </cfdocumentitem> </cfdocumentsection> </cfloop> </cfoutput> </cfdocument>