Thank you sir for the fast response... i found dataTableName.fnSettings()._iRecordsTotal; in getting iTotalRecords is there something like that for the iTotalDisplayRecords. I am new in the datatable. I will study the link that you give sir. and Sorry for bad english.
Replies
Allan
Your Datatable is Awesome ..
$('#example').dataTable( {
"fnDrawCallback": function () {
alert( 'Now on page'+ this.fnPagingInfo().iPage );
}
} );
example is i want to access it in this
$( "#btn_gen" ).button().click(function() {
});
var oSettings = oTable.fnSettings();
alert(oSettings.fnRecordsDisplay());
but the result it gave me was the result of the previous data, and not exactly what the data that been display.
I hope you understand me ...