I loop the lines in the function $.fn.dataTable.ext.search.pushto select some lines based on many criteria. I set some values in TDtables known as orthogonal . I am trying to get the value , but I do not know how to do it. I can get the internal cell data through (for column 2), but not “data sorting” or “data filter”. Any ideas? 'data-sort'data[2]
$.fn.dataTable.ext.search.push(
function (settings, data, dataIndex) {
var iRating = parseFloat(data[2]) || 0;
var datasort =
);
HTML
<td data-sort="57000" class=" seqNum">.....</td>
source
share