API fnFilter - filter multiple selected collumns
API fnFilter - filter multiple selected collumns
Hi,
Is there any way I can filter on multiple selected columns? I have a table wich has 5 clumns, but I only want to filter on the first three.
This is the code for my search field.
[code]
$("#search").keyup(function () {
datatable = $("#Table").dataTable();
datatable.fnFilter($(this).val(), null, false, true, false);
datatable.fnDraw();
});
[/code]
I have tried using an array as second parameter, but this doesn't work.
Is there any way I can filter on multiple selected columns? I have a table wich has 5 clumns, but I only want to filter on the first three.
This is the code for my search field.
[code]
$("#search").keyup(function () {
datatable = $("#Table").dataTable();
datatable.fnFilter($(this).val(), null, false, true, false);
datatable.fnDraw();
});
[/code]
I have tried using an array as second parameter, but this doesn't work.
This discussion has been closed.