pdfFlash

起始版本号: Buttons 1.0.0

以pdf格式保存表格中的数据(使用Adobe Flash)

注意:这个需要使用Bottons扩展

说明(Description)

这个按钮可以提供用户把表格数据以PDF方式导出

注意:这个按钮有很多限制

The pdfHtml5Button method provides much greater flexibility and thus button is considered to be sunsetted, but is still provided for use with older browsers that do not support the APIs required for the pdfHtml5Button button type.

这个操作需要 Adobe Flash 的支持。如果没有安装flash或者是禁用了,则不会显示此按钮。或者使用 pdfHtml5Button 方式。使用 pdfButton 按钮,将会自动在 pdfHtml5Button 之间切换,这取决于浏览器的功能

选项(Options)

这个按钮有以下选项配置:

示例

Datatables初始化:试用 Flash PDF 按钮

$('#myTable').DataTable( {
    buttons: [
        'pdfFlash'
    ]
} );

Datatables初始化:使用 pdfButton ,让浏览器自动选择

$('#myTable').DataTable( {
    buttons: [
        'pdf'
    ]
} );

Datatables初始化:使用 exportOptions 选项配置导当前页数据

$('#myTable').DataTable( {
    buttons: [
        {
            extend: 'pdfFlash',
            text: 'Save current page',
            exportOptions: {
                modifier: {
                    page: 'current'
                }
            }
        }
    ]
} );

http://datatables.net/reference/button/pdfFlash

Translation from DataTables.net, with permission