你们可以告诉我如何使用css类从DataTables html5 PDF Export的 customize(doc)函数中的doc对象更改列字体大小和重量。
我有一个数据表,其中某些列必须是粗体且大于其他列。
我有以下按钮定义(似乎无法正常工作
$('.data-table').DataTable({
buttons: [
{
extend: 'pdfHtml5',
text: '<i class="fa fa-file-pdf-o fa-lg" style="color: red"></i> PDF',
titleAttr: 'Export to PDF',
orientation: 'auto',
className: 'btn btn-default',
customize: function (doc) {
doc.defaultStyle.fontSize = 8;
doc.content[1].table.widths = ['*', 70, 70];
doc.styles['td.bigcol'] = {
fontSize: 16,
bold: true,
};
doc.content.splice(1, 0, {
margin: [0, 0, 0, 12],
image: 'data:image/png;base64,' + imageStr,
fit: [80, 80]
});
}
}
]
});
我的表与此类似:
<table class="table data-table">
<thead>
<tr>
<td class="bigCol">
Some List of things
</td>
<td></td>
<td></td>
</tr>
</thead>
<tbody>
<tr>
<td class="bigCol">On List 1</td>
<td></td>
<td></td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td>data</td>
<td>data</td>
<td>data</td>
</tr>
<tr>
<td class="bigCol">list 1 totals</td>
<td>data</td>
<td>data</td>
</tr>
</tbody>
</table>
这继续像列表9一样。该表在浏览器窗口中正确显示,但是pdf ayayayyy
感谢。
答案 0 :(得分:0)
最后得到它......在This Post的帮助下。
在customize函数上,使用Jquery I循环遍历每个表的行,然后每行的列获取行索引和列索引,然后使用doc对象中表上的那些索引来定义列的样式
doc.content[1].table.widths = ['*', 70, 70];
$('.data-table').find('tr').each(function(ix, row) {
var index = ix;
$(row).find('td').each(function(ind, column) {
if ($(column).hasClass('bigCol')) {
var fontSize = $(column).css('font-size').replace('px', '');
doc.content[1].table.body[index][ind].style = {
fontSize: parseInt(fontSize)
bold: true
};
}
});
});
DOM表上的索引等同于doc的表体对象
上的索引