excelFlash

起始版本号: Buttons 1.0.0

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

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

说明(Description)

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

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

The excelHtml5Button 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 excelHtml5Button button type.

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

选项(Options)

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

示例

Datatables初始化:试用 Flash Excel 按钮

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

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

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

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

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

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

Translation from DataTables.net, with permission