如何格式化导出为pdf的数据表?

时间:2016-10-19 06:35:07

标签: datatables

请帮我使用数据表将CSS添加到导出PDF。导出的PDF格式不是HTML表格。我需要在导出的pdf中右对齐。还要如何合并列?

谢谢

这是我的代码:

$('#reporTable').DataTable({

    "paging" : false,
    "ordering": false,
    "info" : false,
    "searching" : false,

    dom: 'T<"clear">lfrtip',
    tableTools: {
    "sSwfPath": "/javascripts/js/dataTables/tools/swf/copy_csv_xls_pdf.swf",

    "aButtons": [
    {
    "sExtends": "pdf",
    "sTitle": $filename,
    "sPdfOrientation": "landscape",
    "sPdfMessage": $out_name+":" + msg
    },

    ],

    }

    });

2 个答案:

答案 0 :(得分:1)

使用exportOptions数据表。

有关详细信息,请访问data table formatting

答案 1 :(得分:0)