How to redraw a table with new ajax source without destroying datatable object?
How to redraw a table with new ajax source without destroying datatable object?
sathish_m
Posts: 9Questions: 4Answers: 0
i want to redraw a table with new ajax source without destroying datatable object. can any body help me.
This question has accepted answers - jump to:
This discussion has been closed.
Answers
Hi,
an idea?!
global instance var?
var globinstance = {};
...
globalinstance = $("mytable").dataTable();
...
if(globalinstance....
else ...
Can you not just use the
ajax.url()
andajax.url().load()
methods?Allan
thank you allan and detrop.