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
When using server-side paging you can access the total record count like so...
dt.fnSettings()._iRecordsTotal;
If you're using server side paging, you could hook into the fnDrawCallback and update your html whenever the table is drawn...
$('#Table').dataTable({
"fnDrawCallback": function (oSettings) {
alert(oSettings._iRecordsTotal);
}
});