如何在每列导出数据表pdfhtml中设置值中心

时间:2016-03-02 04:14:06

标签: datatable datatables

我有代码可以像这样导出数据表pdfhtml

$('#example3').DataTable( {
  dom: 'lBfrtip',  
  buttons: [
      {
         extend: 'pdfHtml5',
         title: 'Data Cucian Kain Cartiva '+d,
         orientation:'portrait',
         download: 'open',
         orientation:'landscape',
         customize: function(doc) {
           doc.content.forEach(function(item) {
             if (item.table) {
                item.table.widths = [40, 40, '*','*','*'] 
             } 
           })
         }
      }
  ]
} );

和这样的结果 enter image description here 我希望每列中的数据位于中心而不是左侧。

怎么做?

1 个答案:

答案 0 :(得分:1)

只需使用

customize: function(doc) {
   doc.defaultStyle.alignment = 'center';
   ...
}

认为它解释了自己:)你的代码在jsfiddle工作 - >的 https://jsfiddle.net/ccdn6g2v/