Someone tell me I'm not seeing things... I made a simple test that creates a
PDF file using cfdocument. In the test, there are 10 sections and each
section has a section number shown in that section's header.

Sounds simple, right? What I'm seeing is that the following test code
produces the expected results when run in CF7, but in CF8 each section
header shows "Section Number 11" instead of the correct number.

Has anyone else encountered this or is there a known fix/work-around? Maybe
I'm just seeing things, I did eat a LOT of sugar recently. ;)

<cfdocument format="pdf" filename="test.pdf" overwrite="yes">
 <cfloop from="1" to="10" index="sectionNumber">
   <cfdocumentsection>
     <cfdocumentitem type="header">
       <cfoutput>Section #sectionNumber# header</cfoutput>
     </cfdocumentitem>

     <cfoutput>Section #sectionNumber# content</cfoutput>

   </cfdocumentsection>
 </cfloop>
</cfdocument>
Tim
_______________________________________________
Reply to DFWCFUG: 
  [email protected]
Subscribe/Unsubscribe: 
  http://lists1.safesecureweb.com/mailman/listinfo/list
List Archives: 
    http://www.mail-archive.com/list%40list.dfwcfug.org/             
  http://www.mail-archive.com/list%40dfwcfug.org/
DFWCFUG Sponsors: 
  www.instantspot.com/
  www.teksystems.com/

Reply via email to