aButtons在数据表中没有按预期工作

时间:2013-12-26 08:03:21

标签: jquery datatable datatables jquery-datatables tabletools

我使用datatable和tabletools导出到CSV,但我想要的是xble,复制到剪贴板和打印按钮。我正在使用文档中描述的以下功能,但它无法正常工作。它仍然显示所有按钮。

$("#table").dataTable({bDestroy: true,"sPaginationType": "full_numbers","sDom": 'T<"clear">lfrtip',
            "oTableTools": {
                "sSwfPath": "media/swf/copy_csv_xls_pdf.swf",
                "aButtons": [
                    "csv",                        
                    {
                        "sExtends":    "collection",
                        "sButtonText": "Save",
                        "aButtons":    [ "csv" ]
                    }
                ]
            }
        });

也试过这个

"oTableTools": {
                    "aButtons": [
                        "csv"
                    ]
                }

但没有用

1 个答案:

答案 0 :(得分:1)

我通过使用tabletool版本的TableTools版本2.0.0来实现它。在我使用TableTools版本1.0.2之前导致不使用数据表版本1.9.4隐藏按钮。