2015-10-06 62 views
0
<cfif currentrow mod #Arguments.numbersDown# is 0> 
<cfdocumentitem type="pagebreak"/> 
</cfif> 

我打算在记录号达到指定的数字(numbersDown)后使用分页符。但是,上面的代码将打印多个页面,然后在最后一页上打印记录。 无论如何解决这个问题或其他方式来强制分页?Coldfusion cfdocument pagebreak issue

注意:上面的代码在一个表内。

+2

请[更新问题](http://stackoverflow.com/posts/32971868/edit)带*小*,自包含的示例,演示:然而相似可以与“标题”来实现你描述的问题。 – Leigh

+0

有了这么少的信息: – shemy

回答

0

我相信这应该工作。也不适合我。

<cfdocument format="PDF" filename="#local.sTargetPDFName#" overwrite="yes" orientation="portrait" marginright=".2" marginleft=".2" marginbottom=".2" margintop=".2" localURL='Yes'> 
     <table cellspacing="0" cellpadding="0" border="0" width="100%"> 
      <cfset dPerPage=local.qPHForm10A.recordCount/2 /> 
      <cfset sRow=1 />  
      <cfloop index="local.nowIndx" from="1" to="#dPerPage#"> 
       <cfset eRow=sRow +2 /> 
        <tr> 
        <th align="center" bgcolor="##efefef" class="noBorder">Account</th> 
        <th align="center" bgcolor="##efefef" class="noBorder">Funds</th> 
        <th align="center" bgcolor="##efefef" class="noBorder">Balance</th> 
        </tr> 
        <cfloop query="local.qPHForm10A" startrow="#sRow#" endrow="#eRow#"> 

        <tr> 
        <td class="noBorder noPadding"> 
         <table cellpadding="0" cellspacing="0" border="0" class="borderList" width="100%"> 
          <tr> 
          <td class="noleftBorder">#DateFormat(rc.qPayementHistoryForm10A.PAYMENT_DATE,"mm/dd/yyyy")#</td> 
          <td>#local.qPHForm10A.VAL1#</td> 
          <td>#local.qPHForm10A.VAL2#</td> 
          <td>#local.qPHForm10A.VAL3#</td> 
          </tr> 
         </table> 
        </td> 
        </tr> 
       </cfloop> 
       <cfset sRow=sRow+2 /> 
       <cfdocumentitem type="header"></cfdocumentitem> 
       </cfloop> 
      </table> 
     </td> 
    </tr> 

</table> 
</cfdocument>