Skip to main content
Participant
August 22, 2023
Question

cfhtmltopdfitem issues

  • August 22, 2023
  • 0 replies
  • 78 views

Hi, i found issues on cfhtmltopdfitem

 

<cfif _PAGENUMBER eq _LASTPAGENUMBER >

  Last Page

<cfelse>

  Page: _PAGENUMBER of _LASTPAGENUMBER

</cfif>

this will only work if no html tags like <div> something like that. ill give example

<cfif _PAGENUMBER eq _LASTPAGENUMBER >

  <div> Last Page </div>

<cfelse>

  <div> Page: _PAGENUMBER of _LASTPAGENUMBER </div>

</cfif>

 

this line of code will not work. also this like of code will also not work

  <cfhtmltopdfitem type="header">
    <div >
      Header
    </div>
  </cfhtmltopdfitem>

  <div>
     Body
  </div>

  <cfhtmltopdfitem type="footer" evalAtPrint="true">
      <cfif _PAGENUMBER eq _LASTPAGENUMBER >
        Last Page
      <cfelse>
        Page: _PAGENUMBER of _LASTPAGENUMBER
      </cfif>
  </cfhtmltopdfitem>


also this if there is <div> in type=header it will not work on footer. please fixed because we need some logic in footer side. thank you

 



    This topic has been closed for replies.