Grid / pdfExport - exported pdf table header

Hi guys,

Quick questions about pdfExport options within GridComponent.

I have problem to find documentation for this two questions:

1.How to keep table header (NOT DOCUMENT HEADER) on every exported pdf page.
2. How to style table header for pdf document ( NOT DOCUMENT HEADER)

Thank you very much.

Cheers


3 Replies

RS Rajapandiyan Settu Syncfusion Team July 25, 2022 02:32 PM UTC

Hi Sinisa,


Thanks for contacting Syncfusion support.


Query #1: How to keep table header (NOT DOCUMENT HEADER) on every exported pdf page.


Kindly refer to the below documentation which illustrates how to export the Grid header on each pdf page.


Repeat column header on each page: https://ej2.syncfusion.com/react/documentation/grid/pdf-export/adding-header-and-footer/#repeat-column-header-on-every-page


Query #2: How to style table header for pdf document ( NOT DOCUMENT HEADER)


By using pdfHeaderQueryCellInfo event, you can style the header cell while exporting into pdf.


pdfHeaderQueryCellInfo: https://ej2.syncfusion.com/react/documentation/api/grid/#pdfheaderquerycellinfo



  pdfHeaderQueryCellInfo(args) {
    // repeat the grid header on each page

    args.cell.row.pdfGrid.repeatHeader = true;

    // customize the style of PDF Grid header

    var backColor = this.gridInstance.pdfExportModule.hexToRgb('#ff704d');

    args.cell.style.backgroundBrush = new PdfSolidBrush(new PdfColor(backColor.r, backColor.g, backColor.b));

  }

 


Sample: https://stackblitz.com/edit/react-fnd8e1?file=index.js


Please get back to us if you need further assistance.


Regards,

Rajapandiyan S



SI Sinisa July 28, 2022 06:13 AM UTC

Hi Rajapandiyan,

Thank you very much. It is working great. 
My fault,  I didn't  check all options :(

Thank you again,

Cheers 



RS Rajapandiyan Settu Syncfusion Team July 29, 2022 05:24 AM UTC

Hi Sinisa,


We are glad to hear that you have achieved your requirement with the solution provided.


Please get back to us if you need further assistance.


Regards,

Rajapandiyan S


Loader.
Up arrow icon