fnDraw and .column(i) combination error
fnDraw and .column(i) combination error
Reyske
Posts: 4Questions: 2Answers: 0
Hi, I have a problem:
I have two functions : One uses oTable.fnDraw() and another uses oTable.column(i).
If I initiate datatables like this:
oTable = $('#Tables').dataTable();
The function oTable.column(i) is undifined.
if I initiate datatables like this:
oTable = $('#Tables').DataTable();
oTable.fnDraw() is undifined..
Is there a way to use these two functions together ?
Thanks !
This question has an accepted answers - jump to answer
This discussion has been closed.
Answers
Use "column" and "draw" - not "fnDraw".
http://datatables.net/upgrade/1.10-convert
You are a Hero :)
very useful link !