强制 Velocity HTML 的分页符恢复

Forcing a Page break for Velocity HTML resumes

提问人:Sarvesh Bhogale 提问时间:3/29/2023 更新时间:3/29/2023 访问量:106

问:

我在使用 Velocity 模板时遇到了一个问题,其中如果候选人的工作历史记录跨越两页,则某些内容会被拆分,我想避免。 例如:-SampleResume

因此,如果应聘者工作历史记录跨越分页符,我想将其推送到下一页,以便该设施的所有工作历史记录都集中在一个页面上。

速度代码如下

<tr>
<td valign="top"
  style="width:32%;text-align: right;font-size: 14px;padding-right: 50px;">
    <span style="font-weight:bold;display:block;padding-top:3px;padding-bottom:3px;padding-left:10px;color: #1181d1;"> Work History </span>
</td>
<td valign="top" style="width:68%;padding-left:10px;font-size: 14px;">
  <span style="display:block;padding:5px;color: #333333;">
    #foreach ($dataRow in $resume.referList)
    Facility:  $dataRow.ClientName<br/>
    Reference: $dataRow.FirstName $dataRow.LastName<br/>
    Title:     $dataRow.ReferJobTitle - $dataRow.Unit<br/>
    Phone:     $dataRow.ReferPhone     Email: $dataRow.ReferEmail<br/>
    From:      $dataRow.FromDate - To:$dataRow.ToDate<br/>
        #if($foreach.hasNext)<br/>#end
     #end
  </span>
</td>
</tr>

关于如何解决此问题的任何建议

我尝试使用下面提到的建议

引用 URL - https://community.jamasoftware.com/discussion/forcing-page-break-for-velocity-html-reports

Java HTML 模板 速度

评论


答: 暂无答案