Getting the remaining data in the table after search is applied.
Getting the remaining data in the table after search is applied.
This question has an accepted answers - jump to answer
This discussion has been closed.
This question has an accepted answers - jump to answer
Answers
_
is not function of the$().DataTable()
returned object - it is a legacy API method.I would suggest using
rows()
- e.g.table.rows( { search: 'applied' } ).data()
.Allan