Is it possible to send ajax request outside datatable
Is it possible to send ajax request outside datatable

Hello,
Is it possible to send ajax request outside DataTable()? allows me to use DataTable only for draw
Thank you
This discussion has been closed.
Answers
Yes. You can initialize a new Datatable in the Ajax success function and add the rows using the
data
option. Or you can userows.add()
to add rows to an existing Datatable.Kevin