Question about printing to PDF.

I downloaded and implemented the example that retrieves the inner HTML and sends it off to the web server for processing (I assume they are using wkhtmltopdf) … but I cannot for the life of me figure out how to get any useful header or footer information to display in the render, even if I modify the HTML, myself.

For example. We have doctors, specialists and patients. I want the doctor’s name, the specialists name to print above the day view printout.

Can someone please help me with this? Thank you!

You can define any HTML as header for the export file

scheduler.exportToPDF({ header:"Any text here" })

Hello,

Perhaps you need to specify the parameters of the exported file:
docs.dhtmlx.com/scheduler/pdf.ht … portmethod

Thank you so much, that’s exactly what I needed!