12

Can I force somehow the table header repeating on each page in pdfMake, when I have a big table, that only fits on multiple pages.

István
  • 5,057
  • 10
  • 38
  • 67

1 Answers1

17

By setting the headerRows, it will repeat automatically.

Like

table: {
    headerRows: 1,
    body: [
        ...
    ]
}
István
  • 5,057
  • 10
  • 38
  • 67