I have a button that apply filter to jquery datatable
$(\"#buttonFilter\").button().click(function() {
if (lboxColor.val() != null) {
In current versions selector-modifier uses a slightly different set of properties.
var table = $('#example').DataTable();
var rows = table.rows({"search" : "applied"});
And you can iterate over the cell data like this:
table.rows({"search":"applied" }).every( function () {
var data = this.data();
});
Some helpful links: