function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
Goodluck123Goodluck123 

Rendering Multi-Page PDF for Multiple Records

Hi,

 

I want to display multiple contacts(reps) financial data in multi page PDF,I pass the list of contact Ids to the controller from there I have to display their financial data  in a PDF.

 

Please guide me how to acheive this rendering multi page pdf.

 

Thanks in advance.

 

GoodLuck

 

kandasmukandasmu

if you are asking about page break for each record, you can put a page break within a repeat control in the visualforce page, something like:

 

<p style="page-break-before: always">

Goodluck123Goodluck123

 

Thanks for your reply, I am not looking for page break.as per my requirement each contact record has some data I want to display all the contact records in multi pages and in one pdf.

 

Thanks.