Completed
Last Updated: 19 Feb 2019 10:30 by ADMIN
Imported User
Created on: 18 Oct 2018 20:31
Category: KendoReact
Type: Feature Request
2
PDF export should have callback to receive generated pdf data
I'd like to be able to get the generated pdf data from GridPDFExport in a callback, instead of saving to file. This is useful for emailing pdfs.
It can easily be achieved by adding a 'generatePDF' method to the KendoDrawingAdapter prototype such as this:

  KendoDrawingAdapter.prototype.generatePDF = function (callback) {
        var _this = this;
        var savePromise = this.drawDOM(this.domElement, this.getDrawOptions())
            .then(function (group) { return _this.exportPDF(group, _this.getPDFOptions()); })
            .then(function (dataUri) { return dataUri });
        if (callback) {
            savePromise.then(callback, callback);
        }
    };
1 comment
ADMIN
Stefan
Posted on: 19 Feb 2019 10:30
Hello,

This can be achieved using the following approach shown in the demo:

https://www.telerik.com/kendo-react-ui/components/pdfprocessing/base64string/

Regards,
Stefan
Progress Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items