Ich versuche, Datei zu exportieren, dh. html pdf jetzt ich versuche zu HTML-Tabelle durch jquery und webstatic MethodeShiledui Export nach pdf
Daten erfolgreich angezeigt werden in Tabelle jetzt, wenn ich versuchen, diese
<script type="text/javascript">
jQuery(function ($) {
$("#pdf").click(function() {
// parse the HTML table element having an id=exportTable
var dataSource = shield.DataSource.create({
data: "#tabledata",
schema: {
type: "table",
fields: {
ID: { type: String },
Owner: { type: Number },
RegNo: { type: String }
}
}
});
// when parsing is done, export the data to PDF
dataSource.read().then(function (data) {
var pdf = new shield.exp.PDFDocument({
author: "PrepBootstrap",
created: new Date()
});
pdf.addPage("a4", "portrait");
pdf.table(
50,
50,
data,
[
{ field: "ID", title: "ID", width: 100 },
{ field: "Owner", title: "Owner", width: 10 },
{ field: "RegNo", title: "RegNo", width: 100 }
],
{
margins: {
top: 50,
left: 50
}
}
);
pdf.saveAs({
fileName: "PrepBootstrapPDF"
});
});
});
});
bevölkern PDF ist Download und ich exportiere erfolgreich in PDF-Datei jetzt möchte ich setzen Bild im PDF und titel im PDF wie ich das mache