All Questions
9 questions
1
vote
1
answer
648
views
Add Custom Title of Table using before every table while exporting multiple tables in a single PDF file using PDFMake
I want to add custom data attribute(data-sheetname - in my case) as a title before every table while exporting it to the PDF using PDFMake.
I've written a code that is generating a pdf for multiple ...
1
vote
0
answers
369
views
PDFMake - Export multiple datatables into single PDF file with Pdfmake
I want to export multiple data tables into a single PDF file using PDFMake.
I've modified my code to generate PDF for multiple tables by taking reference from Here.
But In my case the PDF is ...
0
votes
0
answers
495
views
Uncaught Unrecognized document structure
I am trying to export data table content as PDF, including the image at the first column, image are encoded to base64 then pass the url in the customize function. With following PDFMake documentation, ...
1
vote
0
answers
285
views
Datatables PDFExport align row content vertically middle
I have a Datatables which exports pdf document as below:
How can I make the text inside the rows align vertically middle like below?
Here is my sample code:
<html>
<head>
<...
0
votes
1
answer
1k
views
How to add multiple rows in dataTable pdf header
I use pdfMake to export dataTable content to a pdf. I need to add a nice looking header at the top of the table and also a title.
I have this in my dataTable pdf export script.
doc['header']=(...
0
votes
0
answers
308
views
How can we add line above footer in pdf of datatable?
I have the following code to add footer in pdf.
$(document).ready(function() {
$('#example').DataTable({
"dom": 'Bfirtlp',
buttons: [{
extend: 'pdfHtml5',
...
0
votes
0
answers
598
views
how to add pdfmake script to datatable
I'm trying to work with DataTables Export feature, Now my current requirement is to export a custom pdf (change the font size, color, etc.). In the DataTable documentation, it states, that we can ...
0
votes
1
answer
4k
views
how to export datatable cell with image into a pdf file using pdfmake
I followed this link https://datatables.net/extensions/buttons/examples/html5/pdfImage.html and able to get datatable working with pdfmake. However if a column (or a cell) contains image, that cell is ...
5
votes
2
answers
12k
views
DataTables & PDFmake
I'm trying to work with DataTables Export feature, where I am able to export as CSV, xlxs, pdf. Now my current requirement is to export a custom pdf (change the font size, color, etc.). In the ...