[AngularJS] Re: Pdf

2018-10-21 Thread Srinivas Sria
Title: new angular development features and improvements with error handling webinar by google employees About Angular: Angular is a Typescript-based open-source front-end web application platform led by the Angular Team at Google and by a community of individuals and corporations. What we’

Re: [AngularJS] Re: Pdf

2018-10-16 Thread mahesh reddy
Thanks for giving Reply I need to generate PDF with session name with company logo On Oct 16, 2018 1:04 PM, "Richard Farkas" wrote: > We have an issue in our backlog to research this, starting with > > https://datatables.net/extensions/buttons/examples/ > initialisation/export.html > or > http

[AngularJS] Re: Pdf

2018-10-16 Thread Richard Farkas
We have an issue in our backlog to research this, starting with https://datatables.net/extensions/buttons/examples/initialisation/export.html or https://github.com/MrRio/jsPDF Currently we send a print-friendly view to the printer using the browser's default print function and ask users to choo

[AngularJS] Re: PDF download mangled

2015-11-24 Thread Sander Elias
Hi Mike, Did you try logging inside the function of the transformResponse? If it is mangled in there, it might be a server issue? Regards Sander -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving em

[AngularJS] Re: PDF download mangled

2015-11-24 Thread Mike Summers
Thanks Sander. We tried your sample and an empty transformerReponse, no joy. On Monday, November 23, 2015 at 11:09:22 PM UTC-6, Sander Elias wrote: > > Hi Mike, > > > You need to disable the default transformer(s). > Try something like this: > > var _config = { > headers : {'Accept' : '*/*'},

[AngularJS] Re: PDF download mangled

2015-11-23 Thread Sander Elias
Hi Mike, You need to disable the default transformer(s). Try something like this: var _config = { headers : {'Accept' : '*/*'}, responseType : 'arraybuffer' transformResponse: angular.identity }; that will probably do it. Regards Sander -- You received this message because you are s