I'm using the jQuery DataTables plug-in for my HTML table.
Is there a way to get the row count of the number of rows in my table across pages.
For example, if I have 70
rows in my table, and let's say 50
of them get displayed on the 1st page, and 20
on the 2nd page. Is there a way to get the count of 70
?
I've tried all the suggestions included in this post: jQuery: count number of rows in a table
This includes:
var rowCount = $('#myTable tr').length;
var rowCount = $('#myTable tr').size();
var rowCount = $('#myTable >tbody >tr').length;
var rowCount = $("#myTable").attr('rows').length;
But all the above suggestions seem to return the number of rows on the existing page (in this case, 50
and not 70
).