1

我仍然需要在本地主机上的 Web 服务器上尝试它,但我认为问题可能出在其他地方。

我正在使用 DataTables 在 ASP.NET MVC 中开发解决方案,两者之间的交互将非常轻松。

如果我在 TableTools.js 中设置所需的 SWF 路径,我的资源的完整路径或相对路径就可以了

TableTools.DEFAULTS = {
"sSwfPath": "http://localhost:51203/Content/copy_csv_xls_pdf.swf",
"sRowSelect":      "none",
"sSelectedClass":  null,
"fnPreRowSelect":  null,
"fnRowSelected":   null,
"fnRowDeselected": null,
"aButtons":        [ "copy", "csv", "xls", "pdf", "print" ],
"oTags": {
    "container": "div",
    "button": "a", // We really want to use buttons here, but Firefox and IE ignore the
                     // click on the Flash element in the button (but not mouse[in|out]).
    "liner": "span",
    "collection": {
        "container": "div",
        "button": "a",
        "liner": "span"
    }
}

};

如果我尝试在组件初始化中对其进行试点,它似乎没有在初始化中分配它。

$('.ReservationTable').dataTable({
    "sDom": 'T<"clear">lfrtip',
    "oTableTools": {
        "aButtons": ["copy"],
        "sSwfPath": "http://localhost:51203/Content/copy_csv_xls_pdf.swf"
    }
});

有什么提示吗?

4

1 回答 1

2

该错误是由于在同一页面上有多个具有相同类的 DataTables 并尝试以这种方式初始化多个 datatables 很好,但不适用于 oTableTools。

通过 id 更改为每个表的单独初始化将对此进行排序。

$('#ReservationTable').dataTable({
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
    "aButtons": ["copy"],
    "sSwfPath": "http://localhost:51203/Content/copy_csv_xls_pdf.swf"
}

});

于 2013-11-06T13:28:55.133 回答