Our blazing fast Grid component built with pure JavaScript


Post by jintech »

When adding the following feature config filter bar in this example: https://bryntum.com/products/gantt/examples/export/

filterBar: {
		compactMode: true
	}

The pdf exported has empty rows. What is the workaround for this scenario?

Attachments
filterBarConfig.JPG
filterBarConfig.JPG (19.98 KiB) Viewed 379 times
pdfexport.JPG
pdfexport.JPG (37 KiB) Viewed 417 times

Post by alex.l »

Hello!

Thank you for the report! Here is a ticket:
https://github.com/bryntum/support/issues/10431

You can subscribe on ticket updates to be notified when it's done.

All the best,
Alex Lazarev

How to ask for help? Please read our Support Policy

We do not write the code in bounds of forum support. If you need help with development, contact us via bryntum.com/services


Post by Maxim Gorkovsky »

Hello.
This may be related to the older puppeteer and chrome. Recently we upgraded pdf export server to version 2.0.0, which now uses latest puppeteer and newer packages: https://github.com/bryntum/pdf-export-server/releases/tag/2.0.0

I tested this case with 2.0.0 and it exports fine. Please try it out. If you're using your own implementation, consider upgrading puppeteer.


Post by jintech »

I have tested again on pdf export example: https://bryntum.com/products/gantt/examples/export/ and the pdfExport server url mentioned, is running on old version, so the issue is still there. Can you update the pdf export server for the example so I can test first then update the pdf server at our ends if it works fine.

	pdfExport : {
            exportServer: 'https://dev.bryntum.com:8082',    
headerTpl, footerTpl }

Post by Maxim Gorkovsky »

Can you run pdf export server v2.0.0 locally and test with your application? We will upgrade the pdf server online, but it will take some time and likely will be done along with the 6.2.0 release.


Post by Maxim Gorkovsky »

We hosted pdf export server v 2.0.0 on https://dev.bryntum.com:8083. Minor style adjustment is required for previous releases to work with new chromium on export server. Add this to the exported page:

<style>
.b-print-root .b-timeranges-canvas { display  : block;
        contain  : strict;
        width    : 100%;
        height   : 100%;
        position : absolute;
}
html.b-print-root {
        overflow: auto !important;
}
</style>

Post Reply