Get a number of rows after search.
Get a number of rows after search.

Let's say I just want to show x number of results after I search a datatable. Is this possible? Thanks!
table.columns(5).search(value).draw();
This discussion has been closed.
Let's say I just want to show x number of results after I search a datatable. Is this possible? Thanks!
table.columns(5).search(value).draw();
Answers
You can use the
recordsDisplay
property of thepage.info()
for the number of rows after the search.Kevin
Thank you, let me try it.