Using draw() won´t work
Using draw() won´t work
Hi,
I am relative new to Datatables so i have some questions regarding filtering.
If i define my table like this var my_table = $('#table').dataTable({}), i get the data from a JSON and insert it with fnAddData. I also want to do some individual column searching (like in this example: http://www.datatables.net/examples/api/multi_filter_select.html) later so i tried this my_table.api().search("Something").draw(), but I am not sure if this will work.
Becasue I am not getting any error back but nothing will happen.
Thank you for your help.
Answers
I found it out: bFilter was set to false because I didn´t wanted to show the Search. I changed it to true and now everything is working fine.