0

我使用数据表插件导出 pdf、csv、xls 和打印。我在 pdf 视图中遇到问题。

当我点击下载 pdf 按钮时,我的 pdf 文件数据没有全宽。请检查此链接 - https://datatables.net/extensions/buttons/examples/html5/pdfPage.html

截屏:

在此处输入图像描述

代码:

    {extend: 'copy'},
    {extend: 'csv'},
    {extend: 'excel', title: 'DownloadExcel'},
    {extend: 'pdf'},
    {extend: 'print',
        customize: function(win) {
            $(win.document.body).addClass('white-bg');
            $(win.document.body).css('font-size', '10px');
            $(win.document.body).find('table')
                    .addClass('compact')
                    .css('font-size', 'inherit');
        }
    }
4

1 回答 1

2

尝试更改{extend: 'pdf'}to{extend: 'pdfHtml5'}并添加orientation:'landscape' 并添加到类compact width:100%;

于 2017-01-23T11:41:02.570 回答