Js Tablodan Pdf Aktarım Scripti
Html Sayfalarda bir tablo id ile tetiklendiğinde tablo içeriğini pdf aktaran script
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf/2.5.1/jspdf.umd.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jspdf-autotable/3.5.27/jspdf.plugin.autotable.min.js"></script>
<script>
function TabloPDF(tabloId, dosyaAdi = "tablo.pdf") {
let table = document.querySelector(tabloId);
if (!table) {
console.error("Tablo bulunamadı: " + tabloId);
return;
}
let { jsPDF } = window.jspdf;
let doc = new jsPDF();
doc.addFont('font/roboto.ttf', 'Roboto', 'normal');
doc.setFont("Roboto", "normal");
;
doc.autoTable({
html: table ,
styles: {
font: "Roboto", // Alternatif: "times"
fontStyle: "normal"
}
});
doc.save(dosyaAdi);
}
</script>
Örnek Kullanımı
<button onclick="TabloPDF('#Tablo1')">PDF İndir</button>