2017-01-23 59 views
0

我已經使用數據表插件導出pdf,csv,xls和print。我在pdf視圖中遇到問題。PDF頁面大小和方向的數據表問題

當我點擊下載pdf按鈕時,我的pdf文件數據沒有全寬。請檢查此鏈接 - https://datatables.net/extensions/buttons/examples/html5/pdfPage.html

截圖:

enter image description here

代碼:

{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'); 
     } 
    } 

回答

0

嘗試改變{extend: 'pdf'}{extend: 'pdfHtml5'}並添加orientation:'landscape' 並添加類compactwidth:100%;

+0

在哪裏我將添加'compact''width:100%' – Chinmay235

+0

您可以將其添加到css api .css('font-size':'inherit','width':'100%'); –