以下のスクリプトを使用して、html テーブルから PDF ファイルを生成できます。しかし、すべての列のデータを 1 行ずつ取得しています。
このスクリプトで、PDFファイルを表形式の方法で生成するのを手伝ってください(列の境界線、マージンまたはパディング、ヘッダーを使用)
PDF への html テーブルを生成するために jsPDF lib スクリプトを使用しています。
var pdf = new jsPDF('p', 'pt', 'letter')
, source = $('#TableId')[0]
, specialElementHandlers = {
// element with id of "bypass" - jQuery style selector
'#bypassme': function(element, renderer){
return true
}
}
, margins = {
top: 20,
bottom: 20,
left: 30,
width: 922
};
pdf.fromHTML(
source // HTML string or DOM elem ref.
, margins.left // x coord
, margins.top // y coord
, {
'width': margins.width // max width of content on PDF
, 'elementHandlers': specialElementHandlers
},
function (dispose) {
pdf.save('Test.pdf');
},
margins
)
編集:
関数の下のこのサンプルも試しましたが、空のpdfファイルしか得られません。
function exportTabletoPdf()
{
var doc = new jsPDF('p','pt', 'a4', true);
var header = [1,2,3,4];
doc.table(10, 10, $('#test').get(0), header, {
left:10,
top:10,
bottom: 10,
width: 170,
autoSize:false,
printHeaders: true
});
doc.save('sample-file.pdf');
}