oTable.ajax.reload();
oTable.ajax.reload();
deliator
Posts: 95Questions: 1Answers: 0
I works well for a server side table but how can i make that work with an HTML table ?
This discussion has been closed.
Replies
ajax.reload()
only has meaning if you use theajax
option in the DataTable configuration. If you don't ajax load the initial data thenajax.reload()
can't know anything about your Ajax data source.You could make the Ajax request yourself and then use
clear()
androws.add()
to add the data to the table.Allan