0

I'm currently merging PDF files generated through freemarker in the following way :

var xml = '<?xml version="1.0"?><!DOCTYPE pdf PUBLIC "-//big.faceless.org//report" "report-1.1.dtd">';
    xml += '\n';
    xml += '<pdfset>';
    xml += '\n';

    pdfs.forEach(function(pdfFile){

        xml += '<pdf src="' + nlapiEscapeXML(pdfFile.url) + '"></pdf>';
    });

    xml += '</pdfset>';

Is there any way I can paginate the final file (result of the merged files) using the pagenumber tag?

Simon Corcos
  • 962
  • 14
  • 31

0 Answers0