Custom filtering on multiple tables
Custom filtering on multiple tables
jd_dot_DataTables
Posts: 5Questions: 0Answers: 0
hello :) I red http://datatables.net/examples/plug-ins/range_filtering.html and I get it.
Now the problem is that I have a few tables on the site and I want to make dynamic filtering. Now I do not know how would I distinguish between data from each table, and apply certain (dynamic) filters to it.
Any thoughts. Thank you.
Now the problem is that I have a few tables on the site and I want to make dynamic filtering. Now I do not know how would I distinguish between data from each table, and apply certain (dynamic) filters to it.
Any thoughts. Thank you.
This discussion has been closed.
Replies
dataTables.edCustomFilter.js ->
[code]/* Custom filtering function which will filter data in columns */
$.fn.dataTableExt.afnFiltering.push(
function (oSettings, aData, iDataIndex) {
console.log('anything');
return false;
}
);[/code]
and the HTML is
[code]
[/code]
and none of the tables get initiated by DT before this two lines.
What could be wrong? I ma using latest DT 1.9.4
Thank you