Multiple Tables with one search
Multiple Tables with one search
enggsol_dennis
Posts: 11Questions: 0Answers: 0
I need to create 3 datatables in a single page with only one search box.
I don't know if this is doable.
I need your comments/help.
Thanks in advance!
I don't know if this is doable.
I need your comments/help.
Thanks in advance!
This discussion has been closed.
Replies
Allan
Think I didn't search enough =)
"jQuery.fn.dataTableExt is undefined (path)/dataTables.fnFilterAll.js"
Allan
Now i got it working by replacing these lines ( in fnFilterAll() ):
line 11: jQuery.fn.dataTableExt.iApiIndex = i;
line 14: jQuery.fn.dataTableExt.iApiIndex = 0;
with these
$.fn.dataTableExt.iApiIndex = i;
$.fn.dataTableExt.iApiIndex = 0;
Allan
Thank you again for the support!
Dennis