2011-11-24 56 views
0

我有一些jQuery的數據表的問題:jQuery的數據表:flash.setAction不是一個函數

使用jQuery DataTable TableTools創建我的表格上方的「導出爲PDF」按鈕,當我得到以下錯誤:

flash.setAction is not a function 
flash.setAction('pdf'); 
(TableTools.js (line 1165)) 

我的代碼如下,改編自http://www.datatables.net/extras/tabletools/的示例。

$(document).ready(function() { 
    $('.attendees').dataTable({ 
     "sDom": 'T<"clear">lfrtip', 
     "oTableTools": { 
      "aButtons": [ 
       { 
        "sExtends": "pdf", 
        "sButtonText": "Export to PDF", 
        "mColumns": [ 0, 1, 2, 3, 4 ] 
       } 
      ],   
      "sSwfPath": "path/to/flash/copy_cvs_xls_pdf.swf" 
     } 
    }); 
}); 

有人知道爲什麼會出現這種情況嗎?

在此先感謝!

+0

一個問題:http://www.datatables.net/extras/tabletools/上的確切示例適合您嗎? – AsTheWormTurns

+0

不,它不;確切的示例結果如下: flash.setAction不是函數 [Break On This Error] flash.setAction('copy'); – Helge

回答

相關問題