2011-10-07 99 views
2

如何在使用datatables的同時點擊tr進行點擊,但仍保留原始瀏覽器的菜單,以便它們可以在新標籤頁中點擊或右鍵點擊原始瀏覽器菜單? (如在新標籤,頁面,複製鏈接等中打開)?Clickable row with datatables

我試過Superlink,但這並不能在所有的瀏覽器,我需要它是跨瀏覽器(IE7和更新!)

任何提示/技巧?

回答

3

查看本示例數據表select_row並查看是否有幫助。

看到源Initialisation code

0

這個工程!

oTable = $('#RectifiedCount').dataTable(....); 

$('#RectifiedCount tbody tr').live('click', function (event) {   
    var aData = oTable.fnGetData(this); // get datarow 
    if (null != aData) // null if we clicked on title row 
    { 
     //now aData[0] - 1st column(count_id), aData[1] -2nd, etc. 
     alert("equis"); 
    } 
}); 
+0

不適用於我......未捕獲TypeError:Object [object Object] has no method'live' – ericwjr

相關問題