PDF generated a blank page.
Summary:
My table is based on ADP and I'm getting the data from ORDS and on button click i want to generate pdf but I'm getting the blank page of pdf. Please guide me.
Code Snippet (add any code snippets that support your topic, if applicable):
PageModule.prototype.exportToPDF= function(arg1){
var doc = new jsPDF();
doc.text(10, 10, arg1);
//console.log(doc.output('datauristring'));
doc.save('parts.pdf');
};
PDF BUTTON ACTION CHAIN: -
Thanks in Advance
Tagged:
0