我有一个与此问题相似但不同的查询。
不同之处在于我试图通过行而不是列上的数据属性进行过滤。元素,而tr
不是td
元素。这包含一个主键,我正在尝试删除重复项。重复的行可能在实际列数据中有所不同,所以我不能那样做。键是由下划线分隔的三个数字字段的组合。
<tr data-primarykey="12345678_12_34"><td>...
然后,javascript
在页面加载时调用的函数中......
var rows = [];
$.fn.DataTable.ext.search.push(
function( settings, data, dataIndex, rowObj, counter ) {
if(counter === 0) rows = [];
// I want rowkey to be the data-primarykey attribute of the tr element
var rowkey = table.row(dataIndex).data('primarykey');
// If we've seen the row before (already in the array), filter it out.
// Otherwise, return true and add it to the array
if ($.inArray(rowkey,rows) > -1) return false;
else {
rows.push(rowkey);
return true;
}
}
);
我怀疑问题的一部分是该table
对象没有在任何地方定义。此过滤器适用于多个表,因此如果可能,它需要是当前正在过滤的任何表。每个表都有一个唯一的id
,但共享一个class
属性。
更新 2016/12/12
我在使用实际数据属性的版本方面取得了一些进展。这个版本有一个工作的table
DataTable 对象,我认为正确地获取了行并将其转换为 jquery。但是,尝试获取数据属性会导致undefined
.
$.fn.DataTable.ext.search.push(
function( settings, data, dataIndex, rowObj, counter ) {
if(counter === 0) rowkeys = [];
// I want rowkey to be the data-primarykey attribute of the tr element
var tableID = $(settings.nTable).attr("id");
var table = $('#'.tableID).DataTable(); // Correct DataTable
//var row = table.rows(dataIndex).nodes().to$(); // Correct row?
var rowkey = table.rows(dataIndex).nodes().to$().data("primarykey");
console.log('key: '+rowkey); // Shows 'key: undefined' in console.
// If we've seen the row before (already in the array), filter it out.
// Otherwise, return true and add it to the array
if ($.inArray(rowkey,rowkeys) > -1) return false;
else {
rowkeys.push(rowkey);
return true;
}
}
);